{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AbsenceTypesResponse", "title": "AbsenceTypesResponse", "type": "object", "properties": { "total": { "type": "integer" }, "data": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "descriptor": { "type": "string" }, "absenceTypeCategory": { "$ref": "#/components/schemas/ResourceReference" }, "unit": { "type": "string", "enum": [ "Hours", "Days" ] } } } } } }