//! Conformance-class URIs and the JSON-FG media type.
//!
//! These are the values that appear in a document's `conformsTo` member and that an OGC
//! API advertises at its `/conformance` endpoint.
/// The media type of a JSON-FG document, `application/vnd.ogc.fg+json`.
pub const MEDIA_TYPE: &str = "application/vnd.ogc.fg+json";
/// JSON-FG *Core* conformance class. Every JSON-FG document must declare this.
pub const CORE: &str = "http://www.opengis.net/spec/json-fg-1/1.0/conf/core";
/// The *Polyhedra* conformance class (`Polyhedron`, `MultiPolyhedron`).
pub const POLYHEDRA: &str = "http://www.opengis.net/spec/json-fg-1/1.0/conf/polyhedra";
/// The *Prisms* conformance class (`Prism`, `MultiPrism`).
pub const PRISMS: &str = "http://www.opengis.net/spec/json-fg-1/1.0/conf/prisms";
/// The *Circular Arcs* conformance class (`CircularString`, `CompoundCurve`,
/// `CurvePolygon`, `MultiCurve`, `MultiSurface`).
pub const CIRCULAR_ARCS: &str = "http://www.opengis.net/spec/json-fg-1/1.0/conf/circular-arcs";
/// The *Measures* conformance class.
pub const MEASURES: &str = "http://www.opengis.net/spec/json-fg-1/1.0/conf/measures";
/// The *Feature Types and Schemas* conformance class.
pub const TYPES_SCHEMAS: &str = "http://www.opengis.net/spec/json-fg-1/1.0/conf/types-schemas";
/// The *GeoJSON Profiles* conformance class.
pub const PROFILES: &str = "http://www.opengis.net/spec/json-fg-1/1.0/conf/profiles";
/// The *JSON-FG in Web APIs* conformance class.
pub const API: &str = "http://www.opengis.net/spec/json-fg-1/1.0/conf/api";