Exploring Entities in __default session database.
item Instance
item
All the fields and values for the item instance are shown in the table below.
| id | type | isbn13 | price | numberinstock |
|---|---|---|---|---|
| 4 | blu-ray | 174-6-34-314718-3 | 81.2 | 18 |
As List
- id
- 4
- type
- blu-ray
- isbn13
- 174-6-34-314718-3
- price
- 81.2
- numberinstock
- 18
JSON Example
{
"id": 4,
"type": "blu-ray",
"isbn13": "174-6-34-314718-3",
"price": 81.2,
"numberinstock": 18
}XML Example
<item>
<price>81.2</price>
<numberinstock>18</numberinstock>
<isbn13>174-6-34-314718-3</isbn13>
<id>4</id>
<type>blu-ray</type>
</item>