recipes-app/.gitapp/schemas/users.json

20 lines
310 B
JSON

{
"$id": "users",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"required": [
"name"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"bio": {
"type": "string"
},
"avatar": {
"type": "string"
}
}
}