{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://dpp-keystone.org/spec/validation/v2/json-schema/shared/general-product.schema.json",
  "title": "General Product Module",
  "description": "General product information properties that are common across many sectors.",
  "type": "object",
  "properties": {
    "productName": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "brand": {
      "type": "string"
    },
    "model": {
      "type": "string"
    },
    "gtin": {
      "type": "string"
    },
    "color": {
      "type": "string"
    },
    "countryOfOrigin": {
      "type": "string"
    },
    "netWeight": {
      "type": "number"
    },
    "grossWeight": {
      "type": "number"
    },
    "length": {
      "type": "number"
    },
    "width": {
      "type": "number"
    },
    "height": {
      "type": "number"
    },
    "depth": {
      "type": "number"
    },
    "apparelSize": {
      "type": "string"
    },
    "apparelSizeSystem": {
      "type": "string"
    },
    "image": {
      "type": "array",
      "items": {
        "$ref": "related-resource.schema.json"
      }
    },
    "components": {
      "type": "array",
      "items": {
        "$ref": "component.schema.json"
      }
    },
    "additionalCertifications": {
      "type": "array",
      "items": {
        "$ref": "certification.schema.json"
      }
    }
  }
}
