gitextract_tuehb0n8/ ├── .circleci/ │ ├── .spectral-fragments.yml │ ├── .spectral.yml │ ├── build-openapi.sh │ ├── config.yml │ └── publish.js ├── .github/ │ └── pull_request_template.md ├── .gitignore ├── .nvmrc ├── .remarkignore ├── CHANGELOG.md ├── CITATION.cff ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── PRINCIPLES.md ├── README.md ├── build/ │ ├── index.html │ ├── redoc_index.html │ └── swagger-config.yaml ├── core/ │ ├── README.md │ ├── commons.yaml │ └── openapi.yaml ├── extensions.md ├── fragments/ │ └── itemcollection/ │ ├── README.md │ ├── examples/ │ │ ├── itemcollection-sample-full.json │ │ └── itemcollection-sample-minimal.json │ └── openapi.yaml ├── implementation.md ├── item-search/ │ ├── README.md │ ├── examples.md │ └── openapi.yaml ├── ogcapi-features/ │ ├── README.md │ ├── openapi-collections.yaml │ └── openapi-features.yaml ├── overview.md ├── package.json ├── stac-api.gv └── stac-spec/ ├── .circleci/ │ ├── config.yml │ ├── publish-schemas.js │ └── rc.yaml ├── .github/ │ └── pull_request_template.md ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── STAC-UML.drawio ├── best-practices.md ├── catalog-spec/ │ ├── README.md │ ├── catalog-spec.md │ └── json-schema/ │ └── catalog.json ├── collection-spec/ │ ├── README.md │ ├── collection-spec.md │ └── json-schema/ │ └── collection.json ├── examples/ │ ├── README.md │ ├── catalog.json │ ├── collection-only/ │ │ ├── collection-with-schemas.json │ │ └── collection.json │ ├── collection.json │ ├── collectionless-item.json │ ├── core-item.json │ ├── extended-item.json │ ├── extensions-collection/ │ │ ├── collection.json │ │ └── proj-example/ │ │ └── proj-example.json │ └── simple-item.json ├── extensions/ │ └── README.md ├── item-spec/ │ ├── README.md │ ├── common-metadata.md │ ├── item-spec.md │ └── json-schema/ │ ├── basics.json │ ├── datetime.json │ ├── instrument.json │ ├── item.json │ ├── licensing.json │ └── provider.json ├── overview.md ├── package.json ├── principles.md └── process.md