Process #[schemars] attributes

This commit is contained in:
Graham Esau 2019-08-08 08:24:30 +01:00
parent 1d0fd18c9e
commit 6b64cedb91
9 changed files with 113 additions and 26 deletions

View file

@ -0,0 +1,16 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "MyStruct",
"type": "object",
"properties": {
"camelCase": {
"type": "integer"
},
"new_name_1": {
"type": "integer"
},
"new_name_2": {
"type": "integer"
}
}
}