{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://dpp-keystone.org/spec/validation/v2/json-schema/shared/product-characteristic.schema.json",
  "title": "Product Characteristic",
  "description": "A specific characteristic or feature of the product, often voluntary or supplemental.",
  "type": "object",
  "properties": {
    "characteristicName": {
      "type": "string"
    },
    "characteristicValue": {
      "type": [
        "string",
        "number",
        "boolean"
      ]
    },
    "testMethod": {
      "type": "string"
    }
  },
  "required": [
    "characteristicName",
    "characteristicValue"
  ]
}
