Created
January 13, 2017 18:48
-
-
Save scottythered/090b3d05495ae991d7779bf06d08781a to your computer and use it in GitHub Desktop.
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
# << data >> -- from ArchivesSpace | |
# [% data %] -- from YAML config file | |
# Corporate entities | |
{ | |
"@context": "http://schema.org/", | |
"@type": "Organization", | |
"url": "<< url to this page >>", | |
"alternateName": [ | |
"<< alternate name forms from data >>" | |
], | |
"name": "<< authorized form of name >>" | |
} | |
# Personal entities | |
{ | |
"@context": "http://schema.org/", | |
"@type": "Person", | |
"url": "<< url to this page >>", | |
"birthDate": "<< dates_of_existence.begin, if available >>", | |
"deathDate": "<< dates_of_existence.end, if available >>", | |
"additionalName": [ | |
"<< alternate name forms from data >>" | |
], | |
"name": "<< authorized form of name >>" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment