{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PatchedUserInterview", "title": "PatchedUserInterview", "type": "object", "properties": { "id": { "type": "string", "format": "uuid", "readOnly": true }, "created_by": { "allOf": [ { "$ref": "#/components/schemas/UserBasic" } ], "readOnly": true }, "created_at": { "type": "string", "format": "date-time", "readOnly": true }, "interviewee_emails": { "type": "array", "items": { "type": "string", "maxLength": 254 } }, "transcript": { "type": "string", "readOnly": true }, "summary": { "type": "string" }, "audio": { "type": "string", "format": "uri", "writeOnly": true } } }