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 | 348-0-57-358760-0 | 36.28 | 11 |
As List
- id
- 2
- type
- book
- isbn13
- 348-0-57-358760-0
- price
- 36.28
- numberinstock
- 11
JSON Example
{
"id": 2,
"type": "book",
"isbn13": "348-0-57-358760-0",
"price": 36.28,
"numberinstock": 11
}
XML Example
<item>
<price>36.28</price>
<numberinstock>11</numberinstock>
<isbn13>348-0-57-358760-0</isbn13>
<id>2</id>
<type>book</type>
</item>