schemars/schemars/tests/expected/schema-name-custom.json
2019-09-08 14:20:57 +01:00

38 lines
No EOL
613 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "a-new-name-Array_Of_String-Integer-Integer",
"type": "object",
"properties": {
"inner": {
"$ref": "#/definitions/another-new-name"
},
"t": {
"type": "integer",
"format": "int32"
},
"u": {
"type": "null"
},
"v": {
"type": "boolean"
},
"w": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"inner",
"t",
"u",
"v",
"w"
],
"definitions": {
"another-new-name": {
"type": "object"
}
}
}