Last active
March 26, 2024 19:14
-
-
Save patrickcoombe/82ed96bf5a655f6935498f8316112695 to your computer and use it in GitHub Desktop.
3D Model JSON-LD EXAMPLE
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"@context": "https://schema.org/", | |
"@type": "Product", | |
"sku": "1234-5678", | |
"image": "https://www.example.com/sofa.jpg", | |
"name": "Water heater", | |
"description": "White 3-Seat Sofa", | |
"gtin14": "12345678901231", | |
"mpn": "S1234W3", | |
"brand": { | |
"@type": "Brand", | |
"name": "ExampleSofaBrand" | |
}, | |
"subjectOf": { | |
"@type": "3DModel", | |
"encoding": { | |
"@type": "MediaObject", | |
"contentUrl": "https://example.com/sofa.gltf" | |
} | |
}, | |
"offers": { | |
"@type": "Offer", | |
"url": "https://www.example.com/whitechaiselongue", | |
"itemCondition": "https://schema.org/NewCondition", | |
"availability": "https://schema.org/InStock", | |
"price": 1299.00, | |
"priceCurrency": "USD" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment