| { |
| "responses": { |
| "201": { |
| "content": { |
| "application/json": { |
| "schema": { |
| "properties": { |
| "id": { "type": "number" }, |
| "result": { |
| "properties": { |
| "clause": { |
| "description": "clause_description", |
| "type": "string" |
| }, |
| "description": { |
| "description": "description_description", |
| "nullable": true, |
| "type": "string" |
| }, |
| "filter_type": { |
| "description": "filter_type_description", |
| "enum": ["Regular", "Base"], |
| "type": "string" |
| }, |
| "group_key": { |
| "description": "group_key_description", |
| "nullable": true, |
| "type": "string" |
| }, |
| "name": { |
| "description": "name_description", |
| "maxLength": 255, |
| "minLength": 1, |
| "type": "string" |
| }, |
| "roles": { |
| "description": "roles_description", |
| "items": { "type": "integer" }, |
| "type": "array" |
| }, |
| "tables": { |
| "description": "tables_description", |
| "items": { "type": "integer" }, |
| "minItems": 1, |
| "type": "array" |
| } |
| }, |
| "required": [ |
| "clause", |
| "filter_type", |
| "name", |
| "roles", |
| "tables" |
| ], |
| "type": "object", |
| "title": "RLSRestApi.post" |
| } |
| }, |
| "type": "object" |
| }, |
| "example": { |
| "id": 1, |
| "result": { |
| "clause": "string", |
| "description": "string", |
| "filter_type": "Regular", |
| "group_key": "string", |
| "name": "string", |
| "roles": [], |
| "tables": [] |
| } |
| } |
| } |
| }, |
| "description": "RLS Rule added" |
| }, |
| "400": { |
| "content": { |
| "application/json": { |
| "schema": { |
| "properties": { "message": { "type": "string" } }, |
| "type": "object" |
| }, |
| "example": { "message": "Bad request: Invalid parameters provided" } |
| } |
| }, |
| "description": "Bad request" |
| }, |
| "401": { |
| "content": { |
| "application/json": { |
| "schema": { |
| "properties": { "message": { "type": "string" } }, |
| "type": "object" |
| }, |
| "example": { "message": "Unauthorized: Authentication required" } |
| } |
| }, |
| "description": "Unauthorized" |
| }, |
| "404": { |
| "content": { |
| "application/json": { |
| "schema": { |
| "properties": { "message": { "type": "string" } }, |
| "type": "object" |
| }, |
| "example": { |
| "message": "Not found: The requested resource does not exist" |
| } |
| } |
| }, |
| "description": "Not found" |
| }, |
| "422": { |
| "content": { |
| "application/json": { |
| "schema": { |
| "properties": { "message": { "type": "string" } }, |
| "type": "object" |
| }, |
| "example": { "message": "Unprocessable entity: Validation error" } |
| } |
| }, |
| "description": "Could not process entity" |
| }, |
| "500": { |
| "content": { |
| "application/json": { |
| "schema": { |
| "properties": { "message": { "type": "string" } }, |
| "type": "object" |
| }, |
| "example": { |
| "message": "Internal server error: An unexpected error occurred" |
| } |
| } |
| }, |
| "description": "Fatal error" |
| } |
| } |
| } |