-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathperson-3.0.xsd
85 lines (78 loc) · 3.51 KB
/
person-3.0.xsd
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:sch="http://purl.oclc.org/dsdl/schematron" elementFormDefault="qualified"
targetNamespace="http://www.orcid.org/ns/person" xmlns:person="http://www.orcid.org/ns/person"
xmlns:other-name="http://www.orcid.org/ns/other-name" xmlns:common="http://www.orcid.org/ns/common"
xmlns:researcher-url="http://www.orcid.org/ns/researcher-url"
xmlns:email="http://www.orcid.org/ns/email" xmlns:personal-details="http://www.orcid.org/ns/personal-details"
xmlns:address="http://www.orcid.org/ns/address" xmlns:keyword="http://www.orcid.org/ns/keyword"
xmlns:external-identifier="http://www.orcid.org/ns/external-identifier">
<xs:annotation>
<xs:documentation>
=============================================================================
ORCID (R) Open Source
http://orcid.org
Copyright (c) 2012-2018 ORCID,
Inc.
Licensed under an MIT-Style License (MIT)
http://orcid.org/open-source-license
This copyright and license
information (including a link to the full
license)
shall be included in
its entirety in all copies or substantial portion of
the software.
=============================================================================
The schema describes the message format used for ORCID API requests
and responses.
</xs:documentation>
<xs:appinfo>
<sch:title>Schematron validation</sch:title>
<sch:ns prefix="person" uri="http://www.orcid.org/ns/person" />
</xs:appinfo>
</xs:annotation>
<xs:import namespace="http://www.orcid.org/ns/common"
schemaLocation="../common_3.0/common-3.0.xsd" />
<xs:import namespace="http://www.orcid.org/ns/personal-details"
schemaLocation="../record_3.0/personal-details-3.0.xsd" />
<xs:import namespace="http://www.orcid.org/ns/other-name"
schemaLocation="../record_3.0/other-name-3.0.xsd" />
<xs:import namespace="http://www.orcid.org/ns/researcher-url"
schemaLocation="../record_3.0/researcher-url-3.0.xsd" />
<xs:import namespace="http://www.orcid.org/ns/email"
schemaLocation="../record_3.0/email-3.0.xsd" />
<xs:import namespace="http://www.orcid.org/ns/address"
schemaLocation="../record_3.0/address-3.0.xsd" />
<xs:import namespace="http://www.orcid.org/ns/keyword"
schemaLocation="../record_3.0/keyword-3.0.xsd" />
<xs:import namespace="http://www.orcid.org/ns/external-identifier"
schemaLocation="../record_3.0/person-external-identifier-3.0.xsd" />
<xs:element name="person">
<xs:annotation>
<xs:documentation>The biographical details of the researcher or
contributor.
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element ref="common:last-modified-date" minOccurs="0" maxOccurs="1" />
<xs:element name="name" type="personal-details:name"
minOccurs="0" maxOccurs="1" />
<xs:element ref="other-name:other-names" minOccurs="0"
maxOccurs="1" />
<xs:element name="biography" type="personal-details:biography"
minOccurs="0" maxOccurs="1" />
<xs:element ref="researcher-url:researcher-urls"
minOccurs="0" maxOccurs="1" />
<xs:element ref="email:emails" minOccurs="1" maxOccurs="1" />
<xs:element ref="address:addresses" minOccurs="0"
maxOccurs="1" />
<xs:element ref="keyword:keywords" minOccurs="0"
maxOccurs="1" />
<xs:element ref="external-identifier:external-identifiers"
minOccurs="0" maxOccurs="1" />
</xs:sequence>
<xs:attribute name="path" type="common:element-path" use="optional" />
</xs:complexType>
</xs:element>
</xs:schema>