Files
cli/vendor/schemars/tests/expected/inline-subschemas.json

23 lines
391 B
JSON
Raw Normal View History

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "MyJob",
"type": "object",
"required": [
"spec"
],
"properties": {
"spec": {
"type": "object",
"required": [
"replicas"
],
"properties": {
"replicas": {
"type": "integer",
"format": "uint32",
"minimum": 0.0
}
}
}
}
}