Exploring Entities in __default session database.
todo Instance
todo
All the fields and values for the todo instance are shown in the table below.
id | title | doneStatus | description |
---|---|---|---|
1 | scan paperwork | false |
As List
- id
- 1
- title
- scan paperwork
- doneStatus
- false
- description
JSON Example
{
"id": 1,
"title": "scan paperwork",
"doneStatus": false,
"description": ""
}
XML Example
<todo>
<doneStatus>false</doneStatus>
<description/>
<id>1</id>
<title>scan paperwork</title>
</todo>