{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/RfisResponse", "title": "RfisResponse", "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "title": { "type": "string" }, "status": { "type": "string" }, "assignedTo": { "type": "string" }, "dueDate": { "type": "string", "format": "date" }, "createdAt": { "type": "string", "format": "date-time" }, "updatedAt": { "type": "string", "format": "date-time" } } } }, "pagination": { "$ref": "#/components/schemas/Pagination" } } }