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 |
---|---|---|---|
6 | process payroll | false |
As List
- id
- 6
- title
- process payroll
- doneStatus
- false
- description
JSON Example
{
"id": 6,
"title": "process payroll",
"doneStatus": false,
"description": ""
}
XML Example
<todo>
<doneStatus>false</doneStatus>
<description/>
<id>6</id>
<title>process payroll</title>
</todo>