Apache Airflow · JSON Structure

Openapi.Yaml Time Delta Structure

Time delta

Type: object Properties: 4 Required: 4
ApacheDAGData PipelineETLOpen SourceOrchestrationPythonSchedulingWorkflow

TimeDelta 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

__type days microseconds seconds

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/apache-airflow/refs/heads/main/json-structure/openapi.yaml-time-delta-structure.json",
  "name": "TimeDelta",
  "description": "Time delta",
  "type": "object",
  "properties": {
    "__type": {
      "type": "string"
    },
    "days": {
      "type": "integer"
    },
    "microseconds": {
      "type": "integer"
    },
    "seconds": {
      "type": "integer"
    }
  },
  "required": [
    "__type",
    "days",
    "seconds",
    "microseconds"
  ]
}