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 |
---|---|---|---|
9 | tidy meeting room | false |
As List
- id
- 9
- title
- tidy meeting room
- doneStatus
- false
- description
JSON Example
{
"id": 9,
"title": "tidy meeting room",
"doneStatus": false,
"description": ""
}
XML Example
<todo>
<doneStatus>false</doneStatus>
<description/>
<id>9</id>
<title>tidy meeting room</title>
</todo>