{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ContactPayload",
"title": "ContactPayload",
"type": "object",
"required": [
"name",
"contacts"
],
"properties": {
"name": {
"type": "string",
"example": "My_Directory",
"description": "Receptionist Contact Directory name. The directory name should be greater than 0 and less than 41 characters in length."
},
"contacts": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PersonId"
},
"description": "Non-empty array of users or location features assigned to this Receptionist Contact Directory."
}
}
}