Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add enum map key #384

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion schemars/src/json_schema_impls/indexmap2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ use crate::JsonSchema;
use alloc::collections::{BTreeMap, BTreeSet};
use indexmap2::{IndexMap, IndexSet};

forward_impl!((<K, V: JsonSchema, H> JsonSchema for IndexMap<K, V, H>) => BTreeMap<K, V>);
forward_impl!((<K: JsonSchema, V: JsonSchema, H> JsonSchema for IndexMap<K, V, H>) => BTreeMap<K, V>);
forward_impl!((<T: JsonSchema, H> JsonSchema for IndexSet<T, H>) => BTreeSet<T>);
15 changes: 14 additions & 1 deletion schemars/src/json_schema_impls/maps.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ macro_rules! map_impl {
impl $($desc)+
where
V: JsonSchema,
K: JsonSchema,
{
always_inline!();

Expand All @@ -19,6 +20,18 @@ macro_rules! map_impl {
}

fn json_schema(generator: &mut SchemaGenerator) -> Schema {
let key_schema = generator.subschema_for::<K>();

if let Some(key_schema) = key_schema.as_object() {
if key_schema.get("$ref").is_some() {
return json_schema!({
"type": "object",
"additionalProperties": generator.subschema_for::<V>(),
"propertyNames": generator.subschema_for::<K>(),
})
}
}

json_schema!({
"type": "object",
"additionalProperties": generator.subschema_for::<V>(),
Expand All @@ -31,4 +44,4 @@ macro_rules! map_impl {
map_impl!(<K, V> JsonSchema for alloc::collections::BTreeMap<K, V>);

#[cfg(feature = "std")]
map_impl!(<K, V, H> JsonSchema for std::collections::HashMap<K, V, H>);
map_impl!(<K, V, H> JsonSchema for std::collections::HashMap<K, V, H>);
2 changes: 2 additions & 0 deletions schemars/tests/integration/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ mod url;
#[cfg(feature = "uuid1")]
mod uuid;
mod validator;
#[cfg(feature = "std")]
mod map_with_enum_key;

mod prelude {
pub(crate) use crate::test;
Expand Down
40 changes: 40 additions & 0 deletions schemars/tests/integration/map_with_enum_key.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
use crate::prelude::*;
use std::collections::HashMap;

use schemars::JsonSchema;
use serde::{Deserialize, Serialize};

#[derive(JsonSchema, Deserialize, Serialize)]
struct Map {
inner: HashMap<Key, String>,
}

#[derive(Debug, JsonSchema, Deserialize, Serialize, Eq, PartialEq, Hash, Copy, Clone)]
#[serde(deny_unknown_fields, rename_all = "kebab-case", into = "&str")]
enum Key {
A,
B,
}

impl From<Key> for &str {
fn from(value: Key) -> Self {
match value {
Key::A => "a",
Key::B => "b",
}
}
}
impl From<&str> for Key {
fn from(value: &str) -> Self {
match value {
"a" => Key::A,
"b" => Key::B,
_ => unreachable!(),
}
}
}

#[test]
fn hashmap_with_enum_key() {
test!(Map).assert_snapshot();
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"$defs": {
"Key": {
"enum": ["a", "b"],
"type": "string"
}
},
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"inner": {
"additionalProperties": {
"type": "string"
},
"propertyNames": {
"$ref": "#/$defs/Key"
},
"type": "object"
}
},
"required": ["inner"],
"title": "Map",
"type": "object"
}