@rline/json
Version:
JSON Schema compiler
19 lines • 429 B
JSON
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "ServerSchema",
"type": "object",
"properties": {
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"port": {
"type": "number",
"minimum": 3000,
"maximum": 5000
}
},
"additionalProperties": false
}