{
  "openapi": "3.0.1",
  "info": {
    "title": "Asaph API",
    "version": "1.0.0"
  },
  "paths": {
    "/song-directors": {
      "summary": "Song directors",
      "get": {
        "tags": [
          "Song directors"
        ],
        "description": "Gets all song directors.",
        "responses": {
          "200": {
            "description": null,
            "content": {
              "application/ld+json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/SongDirector"
                  }
                }
              }
            }
          }
        }
      },
      "x-icon-hint": "People",
      "x-is-nav-menu-link": true
    }
  },
  "components": {
    "schemas": {
      "SongDirector": {
        "required": [
          "emailAddress",
          "isActive",
          "name"
        ],
        "properties": {
          "name": {
            "title": "Name",
            "type": "string"
          },
          "emailAddress": {
            "title": "Email address",
            "type": "string"
          },
          "phoneNumber": {
            "title": "Phone number",
            "type": "string"
          },
          "isActive": {
            "title": "Active",
            "type": "boolean"
          }
        }
      }
    },
    "securitySchemes": {
      "oauth2": {
        "type": "oauth2",
        "flows": {
          "implicit": {
            "authorizationUrl": "https://asaphworshipdev.b2clogin.com/asaphworshipdev.onmicrosoft.com/B2C_1_sign_in/oauth2/v2.0/authorize",
            "tokenUrl": "https://asaphworshipdev.b2clogin.com/asaphworshipdev.onmicrosoft.com/B2C_1_sign_in/oauth2/v2.0/token",
            "scopes": { }
          }
        }
      }
    }
  },
  "security": [
    {
      "oauth2": [
        null
      ]
    }
  ]
}