Apache Airflow · Schema

Role

a role item. *New in version 2.1.0*

ApacheDAGData PipelineETLOpen SourceOrchestrationPythonSchedulingWorkflow

Properties

Name Type Description
actions array
name string The name of the role *Changed in version 2.3.0*: A minimum character length requirement ('minLength') is added.
View JSON Schema on GitHub

JSON Schema

openapi.yaml-role-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-role-schema.json",
  "title": "Role",
  "description": "a role item.\n\n*New in version 2.1.0*\n",
  "type": "object",
  "properties": {
    "actions": {
      "items": {
        "$ref": "#/components/schemas/ActionResource"
      },
      "type": "array"
    },
    "name": {
      "description": "The name of the role\n\n*Changed in version 2.3.0*: A minimum character length requirement ('minLength') is added.\n",
      "minLength": 1,
      "type": "string"
    }
  }
}