Apache Airflow · JSON Structure

Airflow Task Instances Log Response Structure

Log serializer for responses.

Type: object Properties: 2 Required: 2
Workflow OrchestrationData PipelineOpen SourceApacheDAGSchedulingETLData Engineering

TaskInstancesLogResponse is a JSON Structure definition published by Apache Airflow, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

content continuation_token

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/airflow/refs/heads/main/json-structure/airflow-task-instances-log-response-structure.json",
  "name": "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"
  ]
}