\n","Structured representation of the JSON-LD example.","{\n \"@context\": \"https://schema.org/\",\n \"@type\": \"Product\",\n \"sku\": \"44E01-M11000\",\n \"inProductGroupWithID\": \"44E01\",\n \"gtin14\": \"98766051104218\",\n \"image\": \"https://www.example.com/jacket_large_green.jpg\",\n \"name\": \"Large green jacket\",\n \"description\": \"Large wool green jacket for the winter months\",\n \"brand\": {\n \"@type\": \"Brand\",\n \"name\": \"A fashion brand\"\n },\n \"color\": \"green\",\n \"size\": {\n \"@type\": \"SizeSpecification\",\n \"sizeSystem\": \"https://schema.org/WearableSizeSystemUS\",\n \"sizeGroup\": [\n \"https://schema.org/WearableSizeGroupMens\",\n \"https://schema.org/WearableSizeGroupBig\",\n \"https://schema.org/WearableSizeGroupTall\"\n ],\n \"name\": \"3XL\",\n \"hasMeasurement\": [\n {\n \"@type\": \"QuantitativeValue\",\n \"valueReference\": \"https://schema.org/WearableMeasurementChestOrBust\",\n \"unitCode\": \"INH\",\n \"value\": 52\n },\n {\n \"@type\": \"QuantitativeValue\",\n \"valueReference\": \"https://schema.org/WearableMeasurementLength\",\n \"unitCode\": \"INH\",\n \"value\": 42\n }\n ],\n \"suggestedGender\": \"male\",\n \"suggestedAge\": {\n \"@type\": \"QuantitativeValue\",\n \"name\": \"adult\",\n \"unitCode\": \"ANN\",\n \"minValue\": 13\n },\n \"suggestedMeasurement\": [\n {\n \"@type\": \"QuantitativeValue\",\n \"valueReference\": \"https://schema.org/BodyMeasurementChest\",\n \"unitCode\": \"INH\",\n \"minValue\": 51,\n \"maxValue\": 54\n },\n {\n \"@type\": \"QuantitativeValue\",\n \"valueReference\": \"https://schema.org/BodyMeasurementHeight\",\n \"unitCode\": \"FOT\",\n \"minValue\": 6,\n \"maxValue\": 6.3\n }\n ]\n },\n \"offers\": {\n \"@type\": \"Offer\",\n \"url\": \"https://www.example.com/jacket?s=l&c=g\",\n \"priceCurrency\": \"USD\",\n \"price\": 239.99,\n \"itemCondition\": \"https://schema.org/NewCondition\",\n \"availability\": \"https://schema.org/InStock\"\n }\n}","Terms and conditions","\n \n Schema.org\n \n V27.02\n |\n 2024-07-01\n "]}
Note: You are viewing the development version of Schema.org. See how we work for more details.

MeasurementTypeEnumeration

A Schema.org Enumeration Type

This term is in the "new" area - implementation feedback and adoption from applications and websites can help improve our definitions.
Enumeration of common measurement types (or dimensions), for example "chest" for a person, "inseam" for pants, "gauge" for screws, or "wheel" for bicycles.

Instances of MeasurementTypeEnumeration may appear as a value for the following properties
PropertyOn TypesDescription
valueReference PropertyValue  or
QualitativeValue  or
QuantitativeValue
A secondary value that provides additional information on the original value, e.g. a reference temperature or a type of measurement.

Enumeration Subtypes

Source

https://github.com/schemaorg/schemaorg/issues/2811


Examples

Example 1
Copied
Example notes or example HTML without markup.
Complete example for a men's jacket with comprehensive size specification:
- Size system: US
- Size group: Men's Big & Tall
- Size code: 3XL
- Jacket measurements: chest: 52 inches, and length 42 inches.
- Suggested age group: 13 years and up
- Suggested body measurements: chest: 51-54 inches; height: 6-6.3 feet
Example encoded as JSON-LD in a HTML script tag.
<script type="application/ld+json">

{
  "@context": "https://schema.org/",
  "@type": "Product",
  "sku": "44E01-M11000",
  "inProductGroupWithID": "44E01",
  "gtin14": "98766051104218",
  "image": "https://www.example.com/jacket_large_green.jpg",
  "name": "Large green jacket",
  "description": "Large wool green jacket for the winter months",
  "brand": {
    "@type": "Brand",
    "name": "A fashion brand"
  },
  "color": "green",
  "size": {
    "@type": "SizeSpecification",
    "sizeSystem": "https://schema.org/WearableSizeSystemUS",
    "sizeGroup": [
      "https://schema.org/WearableSizeGroupMens",
      "https://schema.org/WearableSizeGroupBig",
      "https://schema.org/WearableSizeGroupTall"
    ],
    "name": "3XL",
    "hasMeasurement": [
      {
        "@type": "QuantitativeValue",
        "valueReference": "https://schema.org/WearableMeasurementChestOrBust",
        "unitCode": "INH",
        "value": 52
      },
      {
        "@type": "QuantitativeValue",
        "valueReference": "https://schema.org/WearableMeasurementLength",
        "unitCode": "INH",
        "value": 42
      }
    ],
    "suggestedGender": "male",
    "suggestedAge": {
      "@type": "QuantitativeValue",
      "name": "adult",
      "unitCode": "ANN",
      "minValue": 13
    },
    "suggestedMeasurement": [
      {
        "@type": "QuantitativeValue",
        "valueReference": "https://schema.org/BodyMeasurementChest",
        "unitCode": "INH",
        "minValue": 51,
        "maxValue": 54
      },
      {
        "@type": "QuantitativeValue",
        "valueReference": "https://schema.org/BodyMeasurementHeight",
        "unitCode": "FOT",
        "minValue": 6,
        "maxValue": 6.3
      }
    ]
  },
  "offers": {
    "@type": "Offer",
    "url": "https://www.example.com/jacket?s=l&c=g",
    "priceCurrency": "USD",
    "price": 239.99,
    "itemCondition": "https://schema.org/NewCondition",
    "availability": "https://schema.org/InStock"
  }
}

</script>
Structured representation of the JSON-LD example.