smoosic
Version:
<sub>[Github site](https://github.com/Smoosic/smoosic) | [source documentation](https://smoosic.github.io/Smoosic/release/docs/modules.html) | [change notes](https://aarondavidnewman.github.io/Smoosic/changes.html) | [application](https://smoosic.github.i
25 lines • 465 B
JSON
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"livingThings": {
"type": "array",
"items": {
"properties": {
"species": {
"type": "string"
},
"population": {
"type": "number"
}
},
"required": [
"species"
]
}
}
},
"required": [
"livingThings"
]
}