Home
Apache Airflow
Airflow Job Response Structure
Airflow Job Response Structure
Job serializer for responses.
Type: object
Properties: 11
Required: 10
Workflow Orchestration Data Pipeline Open Source Apache DAG Scheduling ETL Data Engineering
JobResponse is a JSON Structure definition published by Apache Airflow, describing 11 properties, of which 10 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.
Properties
id
dag_id
state
job_type
start_date
end_date
latest_heartbeat
executor_class
hostname
unixname
dag_display_name
Meta-schema: https://json-structure.org/meta/core/v0/#
JSON Structure
{
"$schema": "https://json-structure.org/meta/core/v0/#",
"$id": "https://raw.githubusercontent.com/api-evangelist/airflow/refs/heads/main/json-structure/airflow-job-response-structure.json",
"name": "JobResponse",
"description": "Job serializer for responses.",
"type": "object",
"properties": {
"id": {
"type": "int32",
"title": "Id"
},
"dag_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Dag Id"
},
"state": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "State"
},
"job_type": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Job Type"
},
"start_date": {
"anyOf": [
{
"type": "datetime"
},
{
"type": "null"
}
],
"title": "Start Date"
},
"end_date": {
"anyOf": [
{
"type": "datetime"
},
{
"type": "null"
}
],
"title": "End Date"
},
"latest_heartbeat": {
"anyOf": [
{
"type": "datetime"
},
{
"type": "null"
}
],
"title": "Latest Heartbeat"
},
"executor_class": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Executor Class"
},
"hostname": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Hostname"
},
"unixname": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Unixname"
},
"dag_display_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Dag Display Name"
}
},
"required": [
"id",
"dag_id",
"state",
"job_type",
"start_date",
"end_date",
"latest_heartbeat",
"executor_class",
"hostname",
"unixname"
]
}