Log serializer for responses.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/airflow/refs/heads/main/json-schema/airflow-task-instances-log-response-schema.json", "title": "TaskInstancesLogResponse", "description": "Log serializer for responses.", "type": "object", "properties": { "content": { "anyOf": [ { "items": { "$ref": "#/components/schemas/StructuredLogMessage" }, "type": "array" }, { "items": { "type": "string" }, "type": "array" } ], "title": "Content" }, "continuation_token": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Continuation Token" } }, "required": [ "content", "continuation_token" ] }