sugar-generate
Version:
Auto generate OAS 3.0 REST + GraphQL APIs (Node + MongoDB)
22 lines (21 loc) • 439 B
JSON
{
"name": "deployment",
"schema": {
"uuid": {
"type": "String",
"required": true,
"trim": true,
"min": [2, "Name is too short"],
"max": 100
},
"appConfigurations": [{
"type": "Mixed"
}],
"tags": [{ "type": "String" }],
"status": {
"type": "String",
"enum": ["ready", "pending", "processing", "active", "inactive", "deleted"],
"default": "ready"
}
}
}