Apache Airflow · Schema

RoleCollection

A collection of roles. *New in version 2.1.0*

ApacheDAGData PipelineETLOpen SourceOrchestrationPythonSchedulingWorkflow
View JSON Schema on GitHub

JSON Schema

openapi.yaml-role-collection-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-collection-schema.json",
  "title": "RoleCollection",
  "description": "A collection of roles.\n\n*New in version 2.1.0*\n",
  "type": "object",
  "allOf": [
    {
      "properties": {
        "roles": {
          "items": {
            "$ref": "#/components/schemas/Role"
          },
          "type": "array"
        }
      },
      "type": "object"
    },
    {
      "$ref": "#/components/schemas/CollectionInfo"
    }
  ]
}