{
  "openapi": "3.1.0",
  "info": {
    "title": "TensorBay Public Static API",
    "version": "0.1.0",
    "summary": "Read-only static metadata feeds for the TensorBay preservation index.",
    "description": "TensorBay publishes metadata-only static feeds. These endpoints do not serve model or dataset payloads."
  },
  "servers": [
    {
      "url": "https://tensorbay.net"
    }
  ],
  "paths": {
    "/feeds/public-index.snapshot.json": {
      "get": {
        "summary": "Signed public index snapshot",
        "responses": {
          "200": {
            "description": "TensorBay public index snapshot.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          }
        }
      }
    },
    "/feeds/public-trust.snapshot.json": {
      "get": {
        "summary": "Signed public trust and event snapshot",
        "responses": {
          "200": {
            "description": "TensorBay public trust/event snapshot.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          }
        }
      }
    },
    "/feeds/public-health.snapshot.json": {
      "get": {
        "summary": "Signed public swarm health snapshot",
        "responses": {
          "200": {
            "description": "TensorBay public health snapshot.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          }
        }
      }
    },
    "/data/manifest.json": {
      "get": {
        "summary": "Public data manifest",
        "responses": {
          "200": {
            "description": "TensorBay public data manifest.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          }
        }
      }
    },
    "/data/browse-index.json": {
      "get": {
        "summary": "Precomputed browse display index",
        "responses": {
          "200": {
            "description": "Non-authoritative TensorBay browse display cache.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          }
        }
      }
    },
    "/data/catalog.jsonl": {
      "get": {
        "summary": "Bounded catalog dump",
        "responses": {
          "200": {
            "description": "Newline-delimited TensorBay catalog rows.",
            "content": {
              "application/x-ndjson": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    },
    "/data/catalog.csv": {
      "get": {
        "summary": "Bounded catalog CSV",
        "responses": {
          "200": {
            "description": "CSV TensorBay catalog rows.",
            "content": {
              "text/csv": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    },
    "/answers/index.json": {
      "get": {
        "summary": "Answer-pack index",
        "responses": {
          "200": {
            "description": "TensorBay answer-pack index.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          }
        }
      }
    }
  }
}
