Slide 67
Slide 67 text
UPEPKTPO
{
”$id”: “http://example.com/todo.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Todo",
"type": "object",
"properties": {
"id": {
"type": "type": "string",
"description": "The unique identifier for todo."
},
"title": {
"type": "string",
"description": "The title of the todo",
"minLength": 3,
"maxLength": 255
}
}