{
  "openapi": "3.1.0",
  "info": {
    "title": "Behind the Watt Public Data API",
    "version": "1.0.0",
    "description": "Read-only, no-auth access to verified behind-the-meter power data, announcements, events and provenance.",
    "license": {
      "name": "CC BY 4.0",
      "identifier": "CC-BY-4.0"
    }
  },
  "servers": [
    {
      "url": "https://behindthewatt.com"
    }
  ],
  "paths": {
    "/api/v1/index.json": {
      "get": {
        "operationId": "getAPImanifest",
        "summary": "API manifest",
        "responses": {
          "200": {
            "description": "Current public mirror snapshot",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/facilities.json": {
      "get": {
        "operationId": "getVerifiedfacilitieswithunitspermitsandsourcereceipts",
        "summary": "Verified facilities with units permits and source receipts",
        "responses": {
          "200": {
            "description": "Current public mirror snapshot",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/announcements.json": {
      "get": {
        "operationId": "getThirdpartyreportedprojectpipeline",
        "summary": "Third party reported project pipeline",
        "responses": {
          "200": {
            "description": "Current public mirror snapshot",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/events.json": {
      "get": {
        "operationId": "getChronologicalpublicevents",
        "summary": "Chronological public events",
        "responses": {
          "200": {
            "description": "Current public mirror snapshot",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/summary.json": {
      "get": {
        "operationId": "getVerifiedfleetsummaryanddatasetdate",
        "summary": "Verified fleet summary and dataset date",
        "responses": {
          "200": {
            "description": "Current public mirror snapshot",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/coverage.json": {
      "get": {
        "operationId": "getSourcemonitoringcoverage",
        "summary": "Source monitoring coverage",
        "responses": {
          "200": {
            "description": "Current public mirror snapshot",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/fleet.csv": {
      "get": {
        "operationId": "getFlatverifiedfleetCSV",
        "summary": "Flat verified fleet CSV",
        "responses": {
          "200": {
            "description": "Current public mirror snapshot",
            "content": {
              "text/csv": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    }
  }
}