{
  "openapi": "3.1.0",
  "info": {
    "title": "TestSite public data",
    "version": "1.0.0",
    "description": "Read-only JSON feeds of published events, roles, and merchandise."
  },
  "servers": [
    {
      "url": "https://gamusic.org"
    }
  ],
  "paths": {
    "/api/events.json": {
      "get": {
        "summary": "Published events.",
        "responses": {
          "200": {
            "description": "A feed wrapper.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "required": [
                    "count",
                    "items"
                  ],
                  "properties": {
                    "count": {
                      "type": "integer"
                    },
                    "items": {
                      "type": "array",
                      "items": {
                        "type": "object"
                      }
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/api/careers.json": {
      "get": {
        "summary": "Open roles.",
        "responses": {
          "200": {
            "description": "A feed wrapper.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "required": [
                    "count",
                    "items"
                  ],
                  "properties": {
                    "count": {
                      "type": "integer"
                    },
                    "items": {
                      "type": "array",
                      "items": {
                        "type": "object"
                      }
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/api/merch.json": {
      "get": {
        "summary": "Merchandise, informational only.",
        "responses": {
          "200": {
            "description": "A feed wrapper.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "required": [
                    "count",
                    "items"
                  ],
                  "properties": {
                    "count": {
                      "type": "integer"
                    },
                    "items": {
                      "type": "array",
                      "items": {
                        "type": "object"
                      }
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/api/health.json": {
      "get": {
        "summary": "Build status.",
        "responses": {
          "200": {
            "description": "Status object."
          }
        }
      }
    }
  }
}