Skip to content

Commit

Permalink
feat: add ITEM_SEARCH_URI
Browse files Browse the repository at this point in the history
  • Loading branch information
gadomski committed Oct 3, 2023
1 parent 78e8087 commit fc920fa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions stac-api/src/conformance.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ pub const OGC_API_FEATURES_URI: &str =
/// The GeoJSON spec conformance uri.
pub const GEOJSON_URI: &str = "http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson";

/// The item search conformance uri.
pub const ITEM_SEARCH_URI: &str = "https://api.stacspec.org/v1.0.0/item-search";

/// To support "generic" clients that want to access multiple OGC API Features
/// implementations - and not "just" a specific API / server, the server has to
/// declare the conformance classes it implements and conforms to.
Expand Down
3 changes: 2 additions & 1 deletion stac-api/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@ mod url_builder;
pub use {
collections::Collections,
conformance::{
Conformance, COLLECTIONS_URI, CORE_URI, FEATURES_URI, GEOJSON_URI, OGC_API_FEATURES_URI,
Conformance, COLLECTIONS_URI, CORE_URI, FEATURES_URI, GEOJSON_URI, ITEM_SEARCH_URI,
OGC_API_FEATURES_URI,
},
error::Error,
fields::Fields,
Expand Down

0 comments on commit fc920fa

Please sign in to comment.