use ocipkg::oci_spec::image::MediaType;
pub fn v1_artifact() -> MediaType {
MediaType::Other("application/org.ommx.v1.artifact".to_string())
}
pub fn v1_config() -> MediaType {
MediaType::Other("application/org.ommx.v1.config+json".to_string())
}
pub fn v1_instance() -> MediaType {
MediaType::Other("application/org.ommx.v1.instance".to_string())
}
pub fn v1_parametric_instance() -> MediaType {
MediaType::Other("application/org.ommx.v1.parametric-instance".to_string())
}
pub fn v1_solution() -> MediaType {
MediaType::Other("application/org.ommx.v1.solution".to_string())
}
pub fn v1_sample_set() -> MediaType {
MediaType::Other("application/org.ommx.v1.sample-set".to_string())
}