| CARVIEW |
Select Language
HTTP/2 200
access-control-allow-credentials: true
access-control-allow-headers: Accept
access-control-allow-origin: *
access-control-allow-methods: GET
date: Sun, 01 Feb 2026 14:52:49 GMT
expires: Sun, 01 Feb 2026 15:02:49 GMT
cache-control: public, max-age=600
etag: "uHLGTA"
x-cloud-trace-context: 1a4edc2d2cb7fb496efedf2b6ea4b026
content-type: text/html
content-encoding: gzip
server: Google Frontend
alt-svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
materialExtent - Schema.org Property
This term is in the "new" area - implementation feedback and adoption from applications and websites can help improve our definitions.
Note: You are viewing the development
version of Schema.org.
See how we work for more details.
materialExtent
A Schema.org Property
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/materialExtent
- Check for open issues.
The quantity of the materials being described or an expression of the physical space they occupy.
Values expected to be one of these types
Used on these types
Source
https://github.com/schemaorg/schemaorg/issues/1759
Examples
Example 1
Copied
Example notes or example HTML without markup.
<div> Name: Assorted collection of items<br/> Extent: 285 A boxes, 8 OS boxes (plus 45 T boxes, 50 A boxes, 13 OS boxes / items uncatalogued)<br/> </div>
Example encoded as Microdata embedded in HTML.
<div itemscope itemtype="https://schema.org/CreativeWork"> <link itemprop="additionalType" href="https://schema.org/ArchiveComponent"/> Name: <span itemprop="name">Assorted collection of items</span><br/> Extent: <span itemprop="materialExtent">285 A boxes, 8 OS boxes (plus 45 T boxes, 50 A boxes, 13 OS boxes / items uncatalogued)</span><br/> </div>
Example encoded as JSON-LD in a HTML script tag.
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": ["CreativeWork","ArchiveComponent"],
"name": "Assorted collection of items",
"materialExtent": "285 A boxes, 8 OS boxes (plus 45 T boxes, 50 A boxes, 13 OS boxes / items uncatalogued)"
}
</script>
Structured representation of the JSON-LD example.
{
"@context": "https://schema.org",
"@type": ["CreativeWork","ArchiveComponent"],
"name": "Assorted collection of items",
"materialExtent": "285 A boxes, 8 OS boxes (plus 45 T boxes, 50 A boxes, 13 OS boxes / items uncatalogued)"
}
Example 2
Copied
Example notes or example HTML without markup.
<div> Name: Assorted collection of items<br/> Extent: 1 folder containing 5 design drawings<br/> </div>
Example encoded as Microdata embedded in HTML.
<div itemscope itemtype="https://schema.org/CreativeWork">
<link itemprop="additionalType" href="https://schema.org/ArchiveComponent"/>
Name: <span itemprop="name">Assorted collection of items</span><br/>
Extent: <div>
<div itemprop="materialExtent" itemscope itemtype="https://schema.org/QuantitativeValue">
<span itemprop="value">1</span> <span itemprop="unitText">folder</span>
</div>
containing
<div itemprop="materialExtent" itemscope itemtype="https://schema.org/QuantitativeValue">
<span itemprop="value">5</span> <span itemprop="unitText">design drawings</span>
</div>
</div><br/>
</div>
Example encoded as JSON-LD in a HTML script tag.
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": ["CreativeWork","ArchiveComponent"],
"materialExtent": [
{
"@type": "QuantitativeValue",
"unitText": "folder",
"value": "1"
},
{
"@type": "QuantitativeValue",
"unitText": "design drawings",
"value": "5"
}
]
}
</script>
Structured representation of the JSON-LD example.
{
"@context": "https://schema.org",
"@type": ["CreativeWork","ArchiveComponent"],
"materialExtent": [
{
"@type": "QuantitativeValue",
"unitText": "folder",
"value": "1"
},
{
"@type": "QuantitativeValue",
"unitText": "design drawings",
"value": "5"
}
]
}
•
Schema.org
•
V29.4
|
2025-12-08