create_variable
Define and store variables in Apache Airflow using a REST API-integrated interface, enabling efficient configuration and management of DAG parameters.
Instructions
Create a variable
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | ||
key | Yes | ||
value | Yes |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Description"
},
"key": {
"title": "Key",
"type": "string"
},
"value": {
"title": "Value",
"type": "string"
}
},
"required": [
"key",
"value"
],
"title": "create_variableArguments",
"type": "object"
}