{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/RecordingMulti", "title": "RecordingMulti", "required": [ "attributes" ], "type": "object", "properties": { "id": { "type": "string", "description": "The ID of the recording.", "example": "f1b130da-0cad-4d8b-91dd-7a3085440e89" }, "segment": { "type": "boolean", "description": "Flag; Indicates if this is the entire recording or only a segment of main recording. This flag will be always false for consult callType.", "example": true }, "attributes": { "$ref": "#/components/schemas/RecordingAttributes" } } }