Apache Airflow · Schema

LastAssetEventResponse

Last asset event response serializer.

Workflow OrchestrationData PipelineOpen SourceApacheDAGSchedulingETLData Engineering

Properties

Name Type Description
id object
timestamp object
View JSON Schema on GitHub

JSON Schema

airflow-last-asset-event-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-last-asset-event-response-schema.json",
  "title": "LastAssetEventResponse",
  "description": "Last asset event response serializer.",
  "type": "object",
  "properties": {
    "id": {
      "anyOf": [
        {
          "type": "integer",
          "minimum": 0.0
        },
        {
          "type": "null"
        }
      ],
      "title": "Id"
    },
    "timestamp": {
      "anyOf": [
        {
          "type": "string",
          "format": "date-time"
        },
        {
          "type": "null"
        }
      ],
      "title": "Timestamp"
    }
  }
}