{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CoHostObject", "title": "CoHostObject", "type": "object", "required": [ "email", "displayName" ], "properties": { "email": { "type": "string", "example": "john.andersen@example.com", "description": "Email address for cohost. This attribute can be modified with the [Update Personal Meeting Room Options](/docs/api/v1/meeting-preferences/update-personal-meeting-room-options) API." }, "displayName": { "type": "string", "example": "John Andersen", "description": "Display name for cohost. This attribute can be modified with the [Update Personal Meeting Room Options](/docs/api/v1/meeting-preferences/update-personal-meeting-room-options) API." } } }