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 |
|---|---|---|---|---|
| 7 | dvd | 332-2-68-787214-5 | 91.4 | 9 |
As List
- id
- 7
- type
- dvd
- isbn13
- 332-2-68-787214-5
- price
- 91.4
- numberinstock
- 9
JSON Example
{
"id": 7,
"type": "dvd",
"isbn13": "332-2-68-787214-5",
"price": 91.4,
"numberinstock": 9
}XML Example
<item>
<price>91.4</price>
<numberinstock>9</numberinstock>
<isbn13>332-2-68-787214-5</isbn13>
<id>7</id>
<type>dvd</type>
</item>