{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Vendor", "title": "Vendor", "type": "object", "required": [ "id", "name", "description", "migrateUserCreationEnabled", "loginUrl", "termsOfServiceUrl" ], "properties": { "id": { "type": "string", "example": "Y2lzY29zcGFyazovL3VzL1JFQ09SRElOR19WRU5ET1IvZmVjYjYzNGUtYzMyZS00ZWJmLThlYzMtMmVhYjk3Y2IyNjNk", "description": "Unique identifier of a vendor." }, "name": { "type": "string", "example": "Dubber", "description": "Name of a call recording vendor." }, "description": { "type": "string", "example": "This is the Dubber instance for the US region.", "description": "Describing some vendor info." }, "migrateUserCreationEnabled": { "type": "boolean", "example": true, "description": "Users can be migrated." }, "loginUrl": { "type": "string", "example": "https://wxc-us.dubber.net/login?sso=webex", "description": "Login URL of the vendor." }, "termsOfServiceUrl": { "type": "string", "example": "https://www.dubber.net/terms", "description": "URL to vendor's terms of service." } } }