summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/latex/stex/schema/rnc/omdoc/dublincore.rnc
blob: 2402ddb1e7c8a64c15e668e58ca3312fb5a6d58a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# A RelaxNG schema for the Dublin Core elements
# $Id: dublincore.rnc 8550 2009-11-07 06:38:23Z kohlhase $
# $HeadURL: https://svn.omdoc.org/repos/omdoc/trunk/schema/rnc/pragmatic/dublincore.rnc $
# See the documentation and examples at http://www.omdoc.org
# Copyright (c) 2004-2008 Michael Kohlhase, released under the GNU Public License (GPL) 

default namespace dc = "http://purl.org/dc/elements/1.1/"

## the various content models, specialize for integration
dc.person = text
dc.publisher = text
dc.text = text
dc.inline = text
dc.format = text
dc.source = text
dc.language = text
dc.rights = text
dc.relation = text
dc.date = xsd:dateTime
dc.type = text
dc.identifier = text

# the  model of the Dublin Metadata initiative (http://purl.org/dc)
start = contributor* & creator* &  rights* &  subject* & title* &  description* &
            publisher* &  date* &  type* &  format* & identifier* &  source*  & language* & relation*

contributor = element contributor {dc.person}
creator = element creator {dc.person}
title = element title {dc.inline}
subject = element subject {dc.inline}
description = element description {dc.text}
publisher = element publisher {dc.publisher}
type = element type {dc.type}
format = element format {dc.format}
source = element source {dc.source}
language = element language {dc.language}
relation = element relation {dc.relation}
rights = element rights {dc.rights}
date = element date {dc.date}	      
identifier = element identifier {dc.identifier}