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 | 768-8-23-362680-5 | 50.85 | 15 |
As List
- id
- 2
- type
- book
- isbn13
- 768-8-23-362680-5
- price
- 50.85
- numberinstock
- 15
JSON Example
{
"id": 2,
"type": "book",
"isbn13": "768-8-23-362680-5",
"price": 50.85,
"numberinstock": 15
}
XML Example
<item>
<price>50.85</price>
<numberinstock>15</numberinstock>
<isbn13>768-8-23-362680-5</isbn13>
<id>2</id>
<type>book</type>
</item>