Product Data Type

Implemented Interfaces
Serializable
Properties
name data type description
id string
href string
productRelationship array of ProductRelationship
productCharacteristic array of ProductCharacteristic
relatedParty array of RelatedParty
place Place

Example

{
  "id" : "...",
  "href" : "...",
  "productRelationship" : [ {
    "type" : "...",
    "product" : {
      "id" : "...",
      "href" : "...",
      "productRelationship" : [ { }, { } ],
      "productCharacteristic" : [ { }, { } ],
      "relatedParty" : [ { }, { } ],
      "place" : { }
    }
  }, {
    "type" : "...",
    "product" : {
      "id" : "...",
      "href" : "...",
      "productRelationship" : [ { }, { } ],
      "productCharacteristic" : [ { }, { } ],
      "relatedParty" : [ { }, { } ],
      "place" : { }
    }
  } ],
  "productCharacteristic" : [ {
    "value" : "...",
    "name" : "..."
  }, {
    "value" : "...",
    "name" : "..."
  } ],
  "relatedParty" : [ {
    "id" : "...",
    "href" : "...",
    "validFor" : {
      "endDateTime" : 12345,
      "startDateTime" : 12345
    },
    "name" : "...",
    "role" : "..."
  }, {
    "id" : "...",
    "href" : "...",
    "validFor" : {
      "endDateTime" : 12345,
      "startDateTime" : 12345
    },
    "name" : "...",
    "role" : "..."
  } ],
  "place" : {
    "id" : "...",
    "address" : {
      "address1" : "...",
      "address2" : "...",
      "address3" : "...",
      "address4" : "...",
      "address5" : "...",
      "zipCode" : "...",
      "city" : "...",
      "country" : "...",
      "state" : "..."
    },
    "href" : "...",
    "name" : "..."
  }
}