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 |
|---|---|---|---|---|
| 2 | book | 886-8-63-068673-1 | 42.42 | 99 |
As List
- id
- 2
- type
- book
- isbn13
- 886-8-63-068673-1
- price
- 42.42
- numberinstock
- 99
JSON Example
{
"id": 2,
"type": "book",
"isbn13": "886-8-63-068673-1",
"price": 42.42,
"numberinstock": 99
}XML Example
<item>
<price>42.42</price>
<numberinstock>99</numberinstock>
<isbn13>886-8-63-068673-1</isbn13>
<id>2</id>
<type>book</type>
</item>