Block a user
json schema?
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Person",
"description": "Schema for a person object",
"type": "object",
"properties": {
"name": {
…
json schema?
{
"type": "object",
"properties": {
"name": {
"type": "string",
"default": "Anonymous"
},
"age": {
"type": "integer",
"minimum": 0,
…