{
  "type": "object",
  "properties": {
    "schemaUrl": { "type": "string" },
    "type": { "type": "string", "enum": ["PRODUCT_V1"] },
    "uuid": { "type": "string" },
    "name": { "type": "string" },
    "description": { "type": "string" },
    "externalUrl": { "type": "string" },
    "licenseUrl": { "type": "string" },
    "youtubeUrl": { "type": "string" },
    "condition": { "type": "string" },
    "image": { "type": "string" },
    "imageData": { "type": "string" },
    "animationUrl": { "type": "string" },
    "attributes": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "traitType": { "type": "string"},
          "value": { "type": "string"},
          "displayType": { "type": "string"}
        },
        "required": ["traitType", "value"]
      },
      "minItems": 2
    },
    "product": {
      "type": "object",
      "properties": {
        "uuid": { "type": "string" },
        "version": { "type": "number" },
        "title": { "type": "string" },
        "description": { "type": "string" },
        "identification_sKU": { "type": "string" },
        "identification_productId": { "type": "string" },
        "identification_productIdType": { "type": "string" },
        "productionInformation_brandName": { "type": "string" },
        "productionInformation_manufacturer": { "type": "string" },
        "productionInformation_manufacturerPartNumber": { "type": "string" },
        "productionInformation_modelNumber": { "type": "string" },
        "productionInformation_materials": { "type": "array", "items": { "type": "string" } },
        "details_category": { "type": "string" },
        "details_subCategory": { "type": "string" },
        "details_subCategory2": { "type": "string" },
        "details_offerCategory": { "type": "string", "enum": ["PHYSICAL", "PHYGITAL", "DIGITAL"]},
        "details_tags": { "type": "array", "items": { "type": "string" } },
        "details_sections": { "type": "array", "items": { "type": "string" } },
        "details_personalisation": { "type": "array", "items": { "type": "string" } },
        "visuals_images": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "url": { "type": "string" },
              "tag": { "type": "string" }
            },
            "required": ["url"]
          },
          "minItems": 1
        },
        "visuals_videos": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "url": { "type": "string" },
              "tag": { "type": "string" }
            },
            "required": ["url"]
          }
        }
      },
      "optionalProperties": {
        "packaging_packageQuantity": { "type": "string" },
        "packaging_dimensions_length": { "type": "string"},
        "packaging_dimensions_width": { "type": "string"},
        "packaging_dimensions_height": { "type": "string"},
        "packaging_dimensions_unit": { "type": "string"},
        "packaging_weight_value": { "type": "string"},
        "packaging_weight_unit": { "type": "string"}
      },
      "required": ["uuid", "version", "title", "description", "productionInformation_brandName", "details_offerCategory", "visuals_images"]
    },
    "variations": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "type": { "type": "string" },
          "option": { "type": "string" }
        },
        "required": ["type", "option"]
      }
    },
    "seller": {
      "type": "object",
      "properties": {
        "defaultVersion": { "type": "number" },
        "name": { "type": "string" },
        "description": { "type": "string" },
        "externalUrl": { "type": "string" },
        "tokenId": { "type": "string" },
        "images": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "url": { "type": "string" },
              "tag": { "type": "string" }
            },
            "required": ["url"]
          },
          "minItems": 0
        },
        "contactLinks": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "url": { "type": "string" },
              "tag": { "type": "string" }
            },
            "required": ["url", "tag"]
          },
          "minItems": 1
        }
      },
      "required": ["defaultVersion", "contactLinks", "name"]
    },
    "shipping": {
      "type": "object",
      "properties": {
        "defaultVersion": { "type": "number" },
        "countryOfOrigin": { "type": "string" },
        "supportedJurisdictions": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "label": { "type": "string" },
              "deliveryTime": { "type": "string" }
            },
            "required": ["label", "deliveryTime"]
          }
        },
        "redemptionPoint": { "type": "string" },
        "returnPeriod": {
          "type": "string",
          "pattern": "^[0-9]+$"
        }
      },
      "required": ["returnPeriod"]
    },
    "exchangePolicy": {
      "type": "object",
      "properties": {
        "uuid": { "type": "string" },
        "version": { "type": "number" },
        "label": { "type": "string" },
        "template": { "type": "string" },
        "sellerContactMethod": { "type": "string" },
        "disputeResolverContactMethod": { "type": "string" }
      },
      "required": ["uuid", "version", "template", "sellerContactMethod", "disputeResolverContactMethod"]
    },
    "productOverrides": {
      "type": "object",
      "properties": {
        "title": { "type": "string" },
        "description": { "type": "string" },
        "identification_sKU": { "type": "string" },
        "identification_productId": { "type": "string" },
        "identification_productIdType": { "type": "string" },
        "productionInformation_brandName": { "type": "string" },
        "productionInformation_manufacturer": { "type": "string" },
        "productionInformation_manufacturerPartNumber": { "type": "string" },
        "productionInformation_modelNumber": { "type": "string" },
        "productionInformation_materials": { "type": "array", "items": { "type": "string" } },
        "visuals_images": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "url": { "type": "string" },
              "tag": { "type": "string" }
            },
            "required": ["url"]
          }
        },
        "visuals_videos": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "url": { "type": "string" },
              "tag": { "type": "string" }
            },
            "required": ["url"]
          }
        }
      },
      "optionalProperties": {
        "packaging_packageQuantity": { "type": "string" },
        "packaging_dimensions_length": { "type": "string"},
        "packaging_dimensions_width": { "type": "string"},
        "packaging_dimensions_height": { "type": "string"},
        "packaging_dimensions_unit": { "type": "string"},
        "packaging_weight_value": { "type": "string"},
        "packaging_weight_unit": { "type": "string"}
      },
      "required": []
    }
  },
  "required": [
    "schemaUrl",
    "type",
    "uuid",
    "name",
    "description",
    "externalUrl",
    "licenseUrl",
    "image",
    "attributes",
    "product",
    "seller",
    "shipping",
    "exchangePolicy"
  ]
}
