Apache Airflow · Schema

CreateAssetEventsBody

Create asset events request.

Workflow OrchestrationData PipelineOpen SourceApacheDAGSchedulingETLData Engineering

Properties

Name Type Description
asset_id integer
partition_key object
extra object
View JSON Schema on GitHub

JSON Schema

airflow-create-asset-events-body-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-create-asset-events-body-schema.json",
  "title": "CreateAssetEventsBody",
  "description": "Create asset events request.",
  "type": "object",
  "properties": {
    "asset_id": {
      "type": "integer",
      "title": "Asset Id"
    },
    "partition_key": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Partition Key"
    },
    "extra": {
      "additionalProperties": true,
      "type": "object",
      "title": "Extra"
    }
  },
  "required": [
    "asset_id"
  ],
  "additionalProperties": false
}