Last active
August 26, 2022 09:00
-
-
Save rsimon/1f2cf89f215fa00cd4902d60bda31518 to your computer and use it in GitHub Desktop.
An example record list (with a single record)
This file contains hidden or 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
[ | |
{ | |
"@id": "http://www.example.com/access-link", | |
"title": "Record title", | |
"type": { | |
"label": "Video" | |
}, | |
"descriptions": [ | |
{ | |
"value": "This record's description", | |
"lang": "en" | |
} | |
], | |
"depictions": [ | |
{ | |
"@id": "https://www.example.com/records/thumbnail.jpg", | |
"title": "An optional caption for this record image" | |
} | |
], | |
"media": [ | |
{ | |
"@id": "https://www.example.com/presentation-link.mp4", | |
"title": "An optional caption for this video" | |
} | |
], | |
"subjects": [ | |
{ "label": "Optional" }, | |
{ "label": "Subject" }, | |
{ "label": "Tags" }, | |
{ "label": "If available" } | |
], | |
"places": [ | |
{ "@id": "https://kima.org/places/1234", "relation": "place of publication" }, | |
{ "@id": "https://kima.org/places/5678", "relation": "place attested in source" } | |
] | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment