Last active
August 29, 2015 14:02
-
-
Save dmj/c498a161bf053a1ed550 to your computer and use it in GitHub Desktop.
Schema für DFG-Viewer Rechte- und Linkinformationen, METS-Anwendungsprofil Version 2.1
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
# Schema für DFG-Viewer Linkinformationen, METS-Anwendungsprofil Version 2.1 | |
default namespace = "http://dfg-viewer.de/" | |
start = links | |
links = element links { | |
reference+ & | |
presentation? | |
} | |
presentation = element presentation { | |
xsd:anyURI | |
} | |
reference = element reference { | |
attribute linktext { text }?, | |
xsd:anyURI | |
} |
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
# Schema für DFG-Viewer Rechteinformationen, METS-Anwendungsprofil Version 2.1 | |
default namespace = "http://dfg-viewer.de/" | |
start = rights | |
rights = element rights { | |
owner & | |
ownerLogo & | |
ownerSiteURL & | |
ownerContact & | |
sponsor? & | |
sponsorLogo? & | |
sponsorSiteURL? & | |
license | |
} | |
license = element license { | |
"cc0" | "cc-by" | "cc-by-sa" | "cc-by-nd" | "cc-by-nc" | "cc-by-nc-sa" | "cc-by-nc-nd" | "reserved" | |
} | |
owner = element owner { text } | |
ownerLogo = element ownerLogo { xsd:anyURI } | |
ownerSiteURL = element ownerSiteURL { xsd:anyURI } | |
ownerContact = element ownerContact { xsd:anyURI } | |
sponsor = element sponsor { text } | |
sponsorLogo = element sponsorLogo { xsd:anyURI } | |
sponsorSiteURL = element sponsorSiteURL { xsd:anyURI } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment