Apache Airflow · Schema

TimeDelta

Time delta

ApacheDAGData PipelineETLOpen SourceOrchestrationPythonSchedulingWorkflow

Properties

Name Type Description
__type string
days integer
microseconds integer
seconds integer
View JSON Schema on GitHub

JSON Schema

openapi.yaml-time-delta-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-airflow/refs/heads/main/json-schema/openapi.yaml-time-delta-schema.json",
  "title": "TimeDelta",
  "description": "Time delta",
  "type": "object",
  "properties": {
    "__type": {
      "type": "string"
    },
    "days": {
      "type": "integer"
    },
    "microseconds": {
      "type": "integer"
    },
    "seconds": {
      "type": "integer"
    }
  },
  "required": [
    "__type",
    "days",
    "seconds",
    "microseconds"
  ]
}