Material

Use cases and requirements

The Material model should have properties for:

name

What type of material it is.

colour

A colour matching the WRAP material stream, for consistent colour identification.

image

For clear identification, matching physical signage.

Properties

Term Mapping Definition
name string The name of the material.
color schema:color The matching material stream colour.

Serialisation

  {
  "name": "Paper",
  "color": "fd8812",
  "image": "http://example.com/images/paper.png"
}


  
  <?xml version="1.0" encoding="UTF-8"?>
<material>
  <name>Paper</name>
  <color>fd8812</color>
  <image>http://example.com/images/paper.png</image>
</material>