{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ServiceRequest", "title": "ServiceRequest", "type": "object", "properties": { "id": { "type": "integer", "example": "abc123" }, "number": { "type": "integer", "example": 10 }, "name": { "type": "string", "example": "Example Title" }, "description": { "type": "string", "example": "A sample description." }, "state": { "type": "string", "example": "example_value" }, "priority": { "type": "string", "example": "example_value" }, "requester": { "$ref": "#/components/schemas/UserRef" }, "created_at": { "type": "string", "format": "date-time", "example": "2026-01-15T10:30:00Z" } } }