To-do List UI
Create an Admin app, Source mapping, JSON Schema, and UI layout so users can manage to-do items from the Rierino Admin UI.
Before you start
What you’ll build
6
Create a Schema (todo)

{
"title": "Todo",
"description": "A todo definition",
"type": "object",
"properties": {
"id": {
"title": "Todo ID",
"description": "The unique identifier for a todo",
"type": "string",
"readOnly": true
},
"data": {
"title": "Todo Information",
"description": "Properties of the todo",
"type": "object",
"properties": {
"name": {
"title": "Todo Name",
"description": "Name of the todo",
"type": "string"
},
"project": {
"title": "Project",
"description": "Related project for the todo",
"type": "string"
}
}
}
}
}Next step
Troubleshooting
Last updated









