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 |
---|---|---|---|---|
17 | book | 123-4-56-789012-3 | 5.99 | 5 |
As List
- id
- 17
- type
- book
- isbn13
- 123-4-56-789012-3
- price
- 5.99
- numberinstock
- 5
JSON Example
{
"id": 17,
"type": "book",
"isbn13": "123-4-56-789012-3",
"price": 5.99,
"numberinstock": 5
}
XML Example
<item>
<price>5.99</price>
<numberinstock>5</numberinstock>
<isbn13>123-4-56-789012-3</isbn13>
<id>17</id>
<type>book</type>
</item>