{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ContactPayloadForModify", "title": "ContactPayloadForModify", "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": { "type": "string", "example": "Y2lzY29zcGFyazovL3VzL1BFT1BMRS8wNTUyZjY3Yi01OWE5LTQxYmItODczNi0xYjA0MWQxZGRkNWU" }, "description": "Non-empty array of users or location features assigned to this Receptionist Contact Directory." } } }