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 | 288-1-41-745174-7 | 96.66 | 13 |
As List
- id
- 4
- type
- blu-ray
- isbn13
- 288-1-41-745174-7
- price
- 96.66
- numberinstock
- 13
JSON Example
{
"id": 4,
"type": "blu-ray",
"isbn13": "288-1-41-745174-7",
"price": 96.66,
"numberinstock": 13
}XML Example
<item>
<price>96.66</price>
<numberinstock>13</numberinstock>
<isbn13>288-1-41-745174-7</isbn13>
<id>4</id>
<type>blu-ray</type>
</item>