{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/BatchRefreshPMRIDObject", "title": "BatchRefreshPMRIDObject", "type": "object", "required": [ "siteUrl" ], "properties": { "siteUrl": { "type": "string", "example": "example.webex.com", "description": "Site URL to refresh the personal room IDs." }, "personalMeetingRoomIds": { "type": "array", "items": { "$ref": "#/components/schemas/PMRIDObject" }, "description": "Information of whose personal room IDs are to be refreshed and how to refresh. The maximum size of `items` is 100." } } }