{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/LivemeetingByCountryRequestBody", "title": "LivemeetingByCountryRequestBody", "type": "object", "description": "If neither siteIds nor siteUrl is provided, all customer meeting sites will be included.", "properties": { "siteIds": { "type": "array", "items": { "type": "integer" }, "description": "A list of meeting site Ids.", "example": [ 1234567, 2345678, 3456789 ] }, "siteUrl": { "type": "string", "description": "A site URL.", "example": "cisco.webex.com" } } }