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 | 746-3-30-131412-0 | 17.45 | 18 |
As List
- id
- 4
- type
- blu-ray
- isbn13
- 746-3-30-131412-0
- price
- 17.45
- numberinstock
- 18
JSON Example
{
"id": 4,
"type": "blu-ray",
"isbn13": "746-3-30-131412-0",
"price": 17.45,
"numberinstock": 18
}XML Example
<item>
<price>17.45</price>
<numberinstock>18</numberinstock>
<isbn13>746-3-30-131412-0</isbn13>
<id>4</id>
<type>blu-ray</type>
</item>