proton-quark-ajv
Version:
Middleware for compiler schemas of AJV and use them with proton microframework
19 lines (18 loc) • 334 B
JSON
{
"properties": {
"name": { "type": "string" },
"email": { "type": "string" },
"address": { "type": "string" },
"phone": { "type": "string" },
"age": { "type": "integer" },
"status": { "type": "string" }
},
"required": [
"name",
"email",
"address",
"phone",
"age",
"status"
]
}