Apache Airflow · Schema

TaskInletAssetReference

Task inlet reference serializer for assets.

Workflow OrchestrationData PipelineOpen SourceApacheDAGSchedulingETLData Engineering

Properties

Name Type Description
dag_id string
task_id string
created_at string
updated_at string
View JSON Schema on GitHub

JSON Schema

airflow-task-inlet-asset-reference-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-inlet-asset-reference-schema.json",
  "title": "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": "string",
      "format": "date-time",
      "title": "Created At"
    },
    "updated_at": {
      "type": "string",
      "format": "date-time",
      "title": "Updated At"
    }
  },
  "required": [
    "dag_id",
    "task_id",
    "created_at",
    "updated_at"
  ],
  "additionalProperties": false
}