{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/api-evangelist/labguru/main/json-schema/createRequest.json", "title": "createRequest", "type": "object", "required": [ "token" ], "properties": { "token": { "type": "string", "example": "YOUR TOKEN IS HERE" }, "item": { "type": "object", "required": [ "request_template_id" ], "properties": { "name": { "type": "string", "description": "The name of the request" }, "request_template_id": { "type": "integer", "description": "The ID of the request template to start the request from" }, "priority": { "type": "string", "description": "Specifies the priority level of the request. By default - Low", "enum": [ "Low", "Medium", "High", "Urgent" ], "example": "Medium" } } } } }