use serde::{Deserialize, Serialize};
pub const CORE_URI: &str = "https://api.stacspec.org/v1.0.0/core";
pub const FEATURES_URI: &str = "https://api.stacspec.org/v1.0.0/ogcapi-features";
pub const COLLECTIONS_URI: &str = "https://api.stacspec.org/v1.0.0/collections";
pub const OGC_API_FEATURES_URI: &str =
"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core";
pub const GEOJSON_URI: &str = "http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson";
#[derive(Debug, Serialize, Deserialize)]
#[cfg_attr(feature = "schemars", derive(schemars::JsonSchema))]
pub struct Conformance {
#[serde(rename = "conformsTo")]
pub conforms_to: Vec<String>,
}