{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/api-evangelist/labguru/main/json-schema/updateRequest.json", "title": "updateRequest", "type": "object", "required": [ "token" ], "properties": { "token": { "type": "string", "example": "YOUR TOKEN IS HERE" }, "item": { "type": "object", "properties": { "name": { "type": "string", "description": "The name of the request" }, "team_id": { "type": "integer", "description": "The performing team ID" }, "status": { "type": "string", "description": "The request status, indicating the current state of the request.", "enum": [ "Draft", "Pending", "Approved", "Awaiting Assignment", "Assigned", "In Progress", "Completed" ], "example": "Draft" }, "priority": { "type": "string", "description": "Specifies the priority level of the request. By default - Low", "enum": [ "Low", "Medium", "High", "Urgent" ], "example": "Medium" }, "due_date": { "type": "string", "format": "date", "description": "Date in the following format - 'YYYY-MM-DD'", "example": "2024-03-11" } } } } }