Apache Airflow · Schema

ActionResource

The Action-Resource item. *New in version 2.1.0*

ApacheDAGData PipelineETLOpen SourceOrchestrationPythonSchedulingWorkflow

Properties

Name Type Description
action object The permission action
resource object The permission resource
View JSON Schema on GitHub

JSON Schema

openapi.yaml-action-resource-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-action-resource-schema.json",
  "title": "ActionResource",
  "description": "The Action-Resource item.\n\n*New in version 2.1.0*\n",
  "type": "object",
  "properties": {
    "action": {
      "$ref": "#/components/schemas/Action",
      "description": "The permission action",
      "type": "object"
    },
    "resource": {
      "$ref": "#/components/schemas/Resource",
      "description": "The permission resource",
      "type": "object"
    }
  }
}