Apache Airflow · JSON Structure

Airflow Task Inlet Asset Reference Structure

Task inlet reference serializer for assets.

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

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

Properties

dag_id task_id created_at updated_at

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-inlet-asset-reference-structure.json",
  "name": "TaskInletAssetReference",
  "description": "Task inlet reference serializer for assets.",
  "type": "object",
  "properties": {
    "dag_id": {
      "type": "string",
      "title": "Dag Id"
    },
    "task_id": {
      "type": "string",
      "title": "Task Id"
    },
    "created_at": {
      "type": "datetime",
      "title": "Created At"
    },
    "updated_at": {
      "type": "datetime",
      "title": "Updated At"
    }
  },
  "required": [
    "dag_id",
    "task_id",
    "created_at",
    "updated_at"
  ],
  "additionalProperties": false
}