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.
- Canonical URL: https://schema.org/MeasurementTypeEnumeration
- Check for open issues.
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
Property | On Types | Description |
---|---|---|
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.