{
  "openapi" : "3.1.0",
  "info" : {
    "title" : "OGC API - Records",
    "description" : "OGC API Records endpoints as specified by OGC.",
    "version" : "latest"
  },
  "externalDocs" : {
    "url" : "/"
  },
  "servers" : [ ],
  "tags" : [ ],
  "paths" : {
    "/ogc/records" : {
      "get" : {
        "tags" : [ ],
        "parameters" : [ {
          "name" : "format",
          "in" : "query",
          "description" : "Output format: html (default) or json. Alias for parameter 'f'",
          "required" : false,
          "deprecated" : false,
          "explode" : false,
          "schema" : {
            "type" : "string",
            "title" : "String"
          }
        } ],
        "responses" : {
          "200" : {
            "description" : "Successful response",
            "headers" : { }
          },
          "400" : {
            "description" : "Invalid parameter",
            "headers" : { }
          }
        },
        "deprecated" : false
      }
    },
    "/ogc/records/conformance" : {
      "get" : {
        "tags" : [ ],
        "description" : "Reports the conformance classes supported by this implementation",
        "parameters" : [ {
          "name" : "format",
          "in" : "query",
          "description" : "Output format: html (default) or json. Alias for parameter 'f'",
          "required" : false,
          "deprecated" : false,
          "explode" : false,
          "schema" : {
            "type" : "string",
            "title" : "String"
          }
        } ],
        "responses" : {
          "200" : {
            "description" : "Successful response",
            "headers" : { }
          },
          "400" : {
            "description" : "Invalid parameter",
            "headers" : { }
          }
        },
        "deprecated" : false
      }
    },
    "/ogc/records/collections" : {
      "get" : {
        "tags" : [ ],
        "description" : "Lists available record collections",
        "parameters" : [ {
          "name" : "format",
          "in" : "query",
          "description" : "Output format: html (default) or json. Alias for parameter 'f'",
          "required" : false,
          "deprecated" : false,
          "explode" : false,
          "schema" : {
            "type" : "string",
            "title" : "String"
          }
        } ],
        "responses" : {
          "200" : {
            "description" : "Successful response",
            "headers" : { }
          },
          "400" : {
            "description" : "Invalid parameter",
            "headers" : { }
          }
        },
        "deprecated" : false
      }
    },
    "/ogc/records/collections/{catalogId}" : {
      "get" : {
        "tags" : [ ],
        "description" : "Describes a single collection",
        "parameters" : [ {
          "name" : "catalogId",
          "in" : "path",
          "description" : "Collection identifier",
          "required" : true,
          "deprecated" : false,
          "explode" : false,
          "schema" : {
            "type" : "string",
            "title" : "String"
          }
        }, {
          "name" : "format",
          "in" : "query",
          "description" : "Output format of the collection detail. Alias for parameter 'f'",
          "required" : false,
          "deprecated" : false,
          "explode" : false,
          "schema" : {
            "type" : "string",
            "title" : "String"
          }
        } ],
        "responses" : {
          "200" : {
            "description" : "Successful response",
            "headers" : { }
          },
          "400" : {
            "description" : "Invalid parameter",
            "headers" : { }
          }
        },
        "deprecated" : false
      }
    },
    "/ogc/records/collections/{catalogId}/items" : {
      "get" : {
        "tags" : [ ],
        "description" : "Lists items of the collection as a FeatureCollection (placeholder)",
        "parameters" : [ {
          "name" : "catalogId",
          "in" : "path",
          "description" : "Collection identifier",
          "required" : true,
          "deprecated" : false,
          "explode" : false,
          "schema" : {
            "type" : "string",
            "title" : "String"
          }
        }, {
          "name" : "limit",
          "in" : "query",
          "description" : "Max number of items to return",
          "required" : false,
          "deprecated" : false,
          "explode" : false,
          "schema" : {
            "type" : "integer",
            "format" : "int32",
            "title" : "Int"
          }
        }, {
          "name" : "offset",
          "in" : "query",
          "description" : "Start offset for paging",
          "required" : false,
          "deprecated" : false,
          "explode" : false,
          "schema" : {
            "type" : "integer",
            "format" : "int32",
            "title" : "Int"
          }
        }, {
          "name" : "bbox",
          "in" : "query",
          "description" : "Bounding box: minLon,minLat,maxLon,maxLat",
          "required" : false,
          "deprecated" : false,
          "explode" : false,
          "schema" : {
            "type" : "string",
            "title" : "String"
          }
        }, {
          "name" : "format",
          "in" : "query",
          "description" : "Output format of the collection items. Alias for parameter 'f'",
          "required" : false,
          "deprecated" : false,
          "explode" : false,
          "schema" : {
            "$ref" : "#/components/schemas/de.ingrid.ingridapi.ogc.records.items.ItemExportFormat"
          }
        } ],
        "responses" : {
          "200" : {
            "description" : "Successful response",
            "headers" : { }
          },
          "400" : {
            "description" : "Invalid parameter",
            "headers" : { }
          }
        },
        "deprecated" : false
      }
    },
    "/ogc/records/collections/{catalogId}/items/{recordId}" : {
      "get" : {
        "tags" : [ ],
        "description" : "Describes a single item (record) of the collection",
        "parameters" : [ {
          "name" : "catalogId",
          "in" : "path",
          "description" : "Collection identifier",
          "required" : true,
          "deprecated" : false,
          "explode" : false,
          "schema" : {
            "type" : "string",
            "title" : "String"
          }
        }, {
          "name" : "recordId",
          "in" : "path",
          "description" : "Record identifier",
          "required" : true,
          "deprecated" : false,
          "explode" : false,
          "schema" : {
            "type" : "string",
            "title" : "String"
          }
        }, {
          "name" : "format",
          "in" : "query",
          "description" : "Output format of the record. Alias for parameter 'f'",
          "required" : false,
          "deprecated" : false,
          "explode" : false,
          "schema" : {
            "$ref" : "#/components/schemas/de.ingrid.ingridapi.ogc.records.items.ItemExportFormat"
          }
        } ],
        "responses" : {
          "200" : {
            "description" : "Successful response",
            "headers" : { }
          },
          "400" : {
            "description" : "Invalid parameter",
            "headers" : { }
          }
        },
        "deprecated" : false
      }
    }
  },
  "components" : {
    "schemas" : {
      "de.ingrid.ingridapi.ogc.records.items.ItemExportFormat" : {
        "type" : "string",
        "enum" : [ "HTML", "ISO", "GEOJSON", "INGRID_INDEX_JSON", "GEODCAT_XML" ],
        "title" : "ItemExportFormat"
      }
    },
    "examples" : { }
  },
  "webhooks" : { }
}