{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/GetUserCallCaptionsObject", "title": "GetUserCallCaptionsObject", "type": "object", "required": [ "userClosedCaptionsEnabled", "userTranscriptsEnabled", "locationClosedCaptionsEnabled", "locationTranscriptsEnabled", "useLocationSettingsEnabled" ], "properties": { "userClosedCaptionsEnabled": { "type": "boolean", "example": true, "description": "User-level closed captions are enabled or disabled." }, "userTranscriptsEnabled": { "type": "boolean", "example": true, "description": "User-level transcripts are enabled or disabled." }, "locationClosedCaptionsEnabled": { "type": "boolean", "example": true, "description": "Location closed captions are enabled or disabled. If `useOrgSettingsEnabled` is `true`, these are organization-level settings. Otherwise, location-level settings are used." }, "locationTranscriptsEnabled": { "type": "boolean", "example": true, "description": "Location transcripts are enabled or disabled. If `useOrgSettingsEnabled` is `true`, these are organization-level settings. Otherwise, location-level settings are used." }, "useLocationSettingsEnabled": { "type": "boolean", "example": true, "description": "If `useLocationSettingsEnabled` is `true`, location settings will control the user's closed captions and transcripts. Otherwise, user-level settings are used." } } }