{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SiteResponse", "title": "SiteResponse", "type": "object", "properties": { "siteUrl": { "type": "string", "example": "mysite.webex.com", "description": "`siteUrl` assigned to the user." }, "accountType": { "type": "string", "enum": [ "attendee", "host" ], "description": "Account Type of the site.\n * `attendee` - Attendee account on the site.\n * `host` - Host account on the site.\n" } } }