Created
March 26, 2020 15:08
-
-
Save James-Hudson3010/227ffb77b853a29556be5b5c3a67c309 to your computer and use it in GitHub Desktop.
sample json-ld instance of schema
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": { | |
"mne": "http://example.com/", | |
"itemIdentifier": "mne:itemIdentifier", | |
"iteration": "mne:iteration", | |
"item": "mne:item", | |
"containerVersion": "mne:containerVersion", | |
}, | |
"@id": "the_container_identifier", | |
"@type": "mne:CONTAINER", | |
"item": { | |
"@type": "mne:Item", | |
"itemname": "the_item_name", | |
"width": "500", | |
"height": "200" | |
}, | |
"itemname": "the container name", | |
"containerVersion": { | |
"@type": "mne:CONTAINERVersion", | |
"itemIdentifier": "4asdf2", | |
"iteration": "42" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment