{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AvailableHotelingHost", "title": "AvailableHotelingHost", "type": "object", "required": [ "hostId", "firstName", "lastName", "phoneNumber", "extension", "allowedAssociationDuration" ], "properties": { "hostId": { "type": "string", "example": "Y2lzY29zcGFyazovL3VzL1BFT1BMRS9hYmNkZWYxMi0zNDU2LTc4OTAtYWJjZC1lZjEyMzQ1Njc4OTA", "description": "Unique identifier for the person or workspace." }, "firstName": { "type": "string", "example": "John", "description": "First name of the hoteling host." }, "lastName": { "type": "string", "example": "Doe", "description": "Last name of the hoteling host." }, "phoneNumber": { "type": "string", "example": "+14085551234", "description": "Phone number of the hoteling host." }, "extension": { "type": "string", "example": "1234", "description": "Extension of the hoteling host." }, "allowedAssociationDuration": { "type": "integer", "minimum": 1, "maximum": 999, "example": 24, "description": "Maximum allowed association duration in hours for this host." } }, "description": "Information about an available hoteling host." }