Apache Airflow · Schema

TaskInstancesLogResponse

Log serializer for responses.

Workflow OrchestrationData PipelineOpen SourceApacheDAGSchedulingETLData Engineering

Properties

Name Type Description
content object
continuation_token object
View JSON Schema on GitHub

JSON Schema

airflow-task-instances-log-response-schema.json Raw ↑
{
  "$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"
  ]
}