{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/api-evangelist/labguru/main/json-schema/MaintenanceTemplateBaseRequest.json", "title": "MaintenanceTemplateBaseRequest", "type": "object", "required": [ "token" ], "properties": { "token": { "type": "string", "example": "YOUR TOKEN IS HERE" }, "item": { "type": "object", "properties": { "equipment_type": { "type": "string", "description": "the equipment type" }, "maintenance_type_id": { "type": "integer", "description": "maintenance type id" }, "data": { "type": "string", "description": "templates fields in the follwing json format", "example": "[{\"title\":\"Detergent\",\"value\":\"Wateriii:\"}]" } } } } }