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

  2. {
  3.   "@context": "https://schema.org/",
  4.   "@type": "Product",
  5.   "sku": "44E01-M11000",
  6.   "inProductGroupWithID": "44E01",
  7.   "gtin14": "98766051104218",
  8.   "image": "https://www.example.com/jacket_large_green.jpg",
  9.   "name": "Large green jacket",
  10.   "description": "Large wool green jacket for the winter months",
  11.   "brand": {
  12.     "@type": "Brand",
  13.     "name": "A fashion brand"
  14.   },
  15.   "color": "green",
  16.   "size": {
  17.     "@type": "SizeSpecification",
  18.     "sizeSystem": "https://schema.org/WearableSizeSystemUS",
  19.     "sizeGroup": [
  20.       "https://schema.org/WearableSizeGroupMens",
  21.       "https://schema.org/WearableSizeGroupBig",
  22.       "https://schema.org/WearableSizeGroupTall"
  23.     ],
  24.     "name": "3XL",
  25.     "hasMeasurement": [
  26.       {
  27.         "@type": "QuantitativeValue",
  28.         "valueReference": "https://schema.org/WearableMeasurementChestOrBust",
  29.         "unitCode": "INH",
  30.         "value": 52
  31.       },
  32.       {
  33.         "@type": "QuantitativeValue",
  34.         "valueReference": "https://schema.org/WearableMeasurementLength",
  35.         "unitCode": "INH",
  36.         "value": 42
  37.       }
  38.     ],
  39.     "suggestedGender": "male",
  40.     "suggestedAge": {
  41.       "@type": "QuantitativeValue",
  42.       "name": "adult",
  43.       "unitCode": "ANN",
  44.       "minValue": 13
  45.     },
  46.     "suggestedMeasurement": [
  47.       {
  48.         "@type": "QuantitativeValue",
  49.         "valueReference": "https://schema.org/BodyMeasurementChest",
  50.         "unitCode": "INH",
  51.         "minValue": 51,
  52.         "maxValue": 54
  53.       },
  54.       {
  55.         "@type": "QuantitativeValue",
  56.         "valueReference": "https://schema.org/BodyMeasurementHeight",
  57.         "unitCode": "FOT",
  58.         "minValue": 6,
  59.         "maxValue": 6.3
  60.       }
  61.     ]
  62.   },
  63.   "offers": {
  64.     "@type": "Offer",
  65.     "url": "https://www.example.com/jacket?s=l&c=g",
  66.     "priceCurrency": "USD",
  67.     "price": 239.99,
  68.     "itemCondition": "https://schema.org/NewCondition",
  69.     "availability": "https://schema.org/InStock"
  70.   }
  71. }

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