Apache Airflow · Schema

TimeDelta

TimeDelta can be used to interact with datetime.timedelta objects.

Workflow OrchestrationData PipelineOpen SourceApacheDAGSchedulingETLData Engineering

Properties

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

JSON Schema

airflow-time-delta-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-time-delta-schema.json",
  "title": "TimeDelta",
  "description": "TimeDelta can be used to interact with datetime.timedelta objects.",
  "type": "object",
  "properties": {
    "__type": {
      "type": "string",
      "title": "Type",
      "default": "TimeDelta"
    },
    "days": {
      "type": "integer",
      "title": "Days"
    },
    "seconds": {
      "type": "integer",
      "title": "Seconds"
    },
    "microseconds": {
      "type": "integer",
      "title": "Microseconds"
    }
  },
  "required": [
    "days",
    "seconds",
    "microseconds"
  ]
}