Bulky item

Use cases and requirements

The Bulky item model should have properties for:

name

Sofa

description

3 person seater, quite rough condition.

is working

Is the item in working order (if it is “functional”)?

Properties

Term Mapping Definition
name schema:name The name of the item.
description schema:description A short description of the item and how to manage it.
is working boolean Is the item in working condition?

Serialisation

  {
  "name": "Sofa",
  "description": "3 person seater, quite rough condition.",
  "is_working": true
}
  
  <?xml version="1.0" encoding="UTF-8"?>
<bulky-item>
  <name>Sofa</name>
  <description>3 person seater, quite rough condition.</description>
  <is-working type="boolean">true</is-working>
</bulky-item>