schema-resume-validator 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE +21 -0
- data/README.md +227 -0
- data/schemas/context.jsonld +501 -0
- data/schemas/meta-schema.json +435 -0
- data/schemas/schema-resume.xsd +366 -0
- data/schemas/schema.json +849 -0
- metadata +113 -0
|
@@ -0,0 +1,366 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
|
3
|
+
xmlns:sr="https://schema-resume.org/xml/1.0"
|
|
4
|
+
targetNamespace="https://schema-resume.org/xml/1.0"
|
|
5
|
+
elementFormDefault="qualified"
|
|
6
|
+
version="1.1.0">
|
|
7
|
+
|
|
8
|
+
<xs:annotation>
|
|
9
|
+
<xs:documentation>
|
|
10
|
+
Schema Resume XML Schema Definition (XSD) v1.1.0
|
|
11
|
+
Self-hosted XML schema for CV/Resume validation with work authorization and tools tracking
|
|
12
|
+
|
|
13
|
+
This schema provides comprehensive validation for resume/CV documents in XML format.
|
|
14
|
+
It includes support for personal information, work history, education, skills, projects,
|
|
15
|
+
and more, with semantic web integration through Schema.org types.
|
|
16
|
+
|
|
17
|
+
Primary domain: https://schema-resume.org/
|
|
18
|
+
Alternate domain: https://tradik.github.io/schema-resume/
|
|
19
|
+
|
|
20
|
+
Version: 1.1.0
|
|
21
|
+
License: MIT
|
|
22
|
+
Repository: https://github.com/tradik/schema-resume
|
|
23
|
+
</xs:documentation>
|
|
24
|
+
</xs:annotation>
|
|
25
|
+
|
|
26
|
+
<!-- Root Element -->
|
|
27
|
+
<xs:element name="resume" type="sr:ResumeType">
|
|
28
|
+
<xs:annotation>
|
|
29
|
+
<xs:documentation>Root element containing all resume information</xs:documentation>
|
|
30
|
+
</xs:annotation>
|
|
31
|
+
</xs:element>
|
|
32
|
+
|
|
33
|
+
<!-- Simple Types -->
|
|
34
|
+
<xs:simpleType name="iso8601DateType">
|
|
35
|
+
<xs:annotation>
|
|
36
|
+
<xs:documentation>Date in ISO 8601 format with flexible precision</xs:documentation>
|
|
37
|
+
</xs:annotation>
|
|
38
|
+
<xs:restriction base="xs:string">
|
|
39
|
+
<xs:pattern value="[1-2][0-9]{3}(-[0-1][0-9](-[0-3][0-9])?)?"/>
|
|
40
|
+
</xs:restriction>
|
|
41
|
+
</xs:simpleType>
|
|
42
|
+
|
|
43
|
+
<xs:simpleType name="workTypeEnum">
|
|
44
|
+
<xs:restriction base="xs:string">
|
|
45
|
+
<xs:enumeration value="remote"/>
|
|
46
|
+
<xs:enumeration value="hybrid"/>
|
|
47
|
+
<xs:enumeration value="onsite"/>
|
|
48
|
+
<xs:enumeration value="full-time"/>
|
|
49
|
+
<xs:enumeration value="part-time"/>
|
|
50
|
+
<xs:enumeration value="contract"/>
|
|
51
|
+
<xs:enumeration value="freelance"/>
|
|
52
|
+
<xs:enumeration value="internship"/>
|
|
53
|
+
<xs:enumeration value="temporary"/>
|
|
54
|
+
</xs:restriction>
|
|
55
|
+
</xs:simpleType>
|
|
56
|
+
|
|
57
|
+
<xs:simpleType name="proficiencyLevelType">
|
|
58
|
+
<xs:restriction base="xs:string">
|
|
59
|
+
<xs:enumeration value="Beginner"/>
|
|
60
|
+
<xs:enumeration value="Intermediate"/>
|
|
61
|
+
<xs:enumeration value="Advanced"/>
|
|
62
|
+
<xs:enumeration value="Expert"/>
|
|
63
|
+
</xs:restriction>
|
|
64
|
+
</xs:simpleType>
|
|
65
|
+
|
|
66
|
+
<xs:simpleType name="languageFluencyType">
|
|
67
|
+
<xs:restriction base="xs:string">
|
|
68
|
+
<xs:enumeration value="Native"/>
|
|
69
|
+
<xs:enumeration value="Fluent"/>
|
|
70
|
+
<xs:enumeration value="Intermediate"/>
|
|
71
|
+
<xs:enumeration value="Basic"/>
|
|
72
|
+
</xs:restriction>
|
|
73
|
+
</xs:simpleType>
|
|
74
|
+
|
|
75
|
+
<xs:simpleType name="countryCodeType">
|
|
76
|
+
<xs:restriction base="xs:string">
|
|
77
|
+
<xs:pattern value="[A-Z]{2}"/>
|
|
78
|
+
</xs:restriction>
|
|
79
|
+
</xs:simpleType>
|
|
80
|
+
|
|
81
|
+
<!-- Helper Types -->
|
|
82
|
+
<xs:complexType name="StringListType">
|
|
83
|
+
<xs:sequence>
|
|
84
|
+
<xs:element name="item" type="xs:string" maxOccurs="unbounded"/>
|
|
85
|
+
</xs:sequence>
|
|
86
|
+
</xs:complexType>
|
|
87
|
+
|
|
88
|
+
<!-- Main Resume Type -->
|
|
89
|
+
<xs:complexType name="ResumeType">
|
|
90
|
+
<xs:sequence>
|
|
91
|
+
<xs:element name="basics" type="sr:BasicsType" minOccurs="0"/>
|
|
92
|
+
<xs:element name="work" type="sr:WorkType" minOccurs="0" maxOccurs="unbounded"/>
|
|
93
|
+
<xs:element name="volunteer" type="sr:VolunteerType" minOccurs="0" maxOccurs="unbounded"/>
|
|
94
|
+
<xs:element name="education" type="sr:EducationType" minOccurs="0" maxOccurs="unbounded"/>
|
|
95
|
+
<xs:element name="awards" type="sr:AwardType" minOccurs="0" maxOccurs="unbounded"/>
|
|
96
|
+
<xs:element name="certificates" type="sr:CertificateType" minOccurs="0" maxOccurs="unbounded"/>
|
|
97
|
+
<xs:element name="publications" type="sr:PublicationType" minOccurs="0" maxOccurs="unbounded"/>
|
|
98
|
+
<xs:element name="skills" type="sr:SkillType" minOccurs="0" maxOccurs="unbounded"/>
|
|
99
|
+
<xs:element name="tools" type="sr:ToolType" minOccurs="0" maxOccurs="unbounded"/>
|
|
100
|
+
<xs:element name="languages" type="sr:LanguageType" minOccurs="0" maxOccurs="unbounded"/>
|
|
101
|
+
<xs:element name="interests" type="sr:InterestType" minOccurs="0" maxOccurs="unbounded"/>
|
|
102
|
+
<xs:element name="references" type="sr:ReferenceType" minOccurs="0" maxOccurs="unbounded"/>
|
|
103
|
+
<xs:element name="projects" type="sr:ProjectType" minOccurs="0" maxOccurs="unbounded"/>
|
|
104
|
+
<xs:element name="meta" type="sr:MetaType" minOccurs="0"/>
|
|
105
|
+
</xs:sequence>
|
|
106
|
+
</xs:complexType>
|
|
107
|
+
|
|
108
|
+
<!-- Basics Section -->
|
|
109
|
+
<xs:complexType name="BasicsType">
|
|
110
|
+
<xs:sequence>
|
|
111
|
+
<xs:element name="name" type="xs:string" minOccurs="0"/>
|
|
112
|
+
<xs:element name="label" type="xs:string" minOccurs="0"/>
|
|
113
|
+
<xs:element name="title" type="xs:string" minOccurs="0"/>
|
|
114
|
+
<xs:element name="age" type="xs:integer" minOccurs="0"/>
|
|
115
|
+
<xs:element name="dateOfBirth" type="sr:iso8601DateType" minOccurs="0"/>
|
|
116
|
+
<xs:element name="gender" type="xs:string" minOccurs="0"/>
|
|
117
|
+
<xs:element name="legalNote" type="sr:LegalNoteType" minOccurs="0"/>
|
|
118
|
+
<xs:element name="image" type="xs:anyURI" minOccurs="0"/>
|
|
119
|
+
<xs:element name="email" type="xs:string" minOccurs="0"/>
|
|
120
|
+
<xs:element name="phone" type="xs:string" minOccurs="0"/>
|
|
121
|
+
<xs:element name="url" type="xs:anyURI" minOccurs="0"/>
|
|
122
|
+
<xs:element name="summary" type="xs:string" minOccurs="0"/>
|
|
123
|
+
<xs:element name="keyAchievements" type="sr:StringListType" minOccurs="0"/>
|
|
124
|
+
<xs:element name="coreCompetencies" type="sr:StringListType" minOccurs="0"/>
|
|
125
|
+
<xs:element name="location" type="sr:LocationType" minOccurs="0"/>
|
|
126
|
+
<xs:element name="profiles" type="sr:ProfilesType" minOccurs="0"/>
|
|
127
|
+
<xs:element name="nationalities" type="sr:NationalitiesType" minOccurs="0"/>
|
|
128
|
+
<xs:element name="workAuthorization" type="sr:WorkAuthorizationType" minOccurs="0"/>
|
|
129
|
+
</xs:sequence>
|
|
130
|
+
</xs:complexType>
|
|
131
|
+
|
|
132
|
+
<xs:complexType name="LocationType">
|
|
133
|
+
<xs:sequence>
|
|
134
|
+
<xs:element name="address" type="xs:string" minOccurs="0"/>
|
|
135
|
+
<xs:element name="streetAddress" type="xs:string" minOccurs="0"/>
|
|
136
|
+
<xs:element name="postalCode" type="xs:string" minOccurs="0"/>
|
|
137
|
+
<xs:element name="city" type="xs:string" minOccurs="0"/>
|
|
138
|
+
<xs:element name="countryCode" type="sr:countryCodeType" minOccurs="0"/>
|
|
139
|
+
<xs:element name="region" type="xs:string" minOccurs="0"/>
|
|
140
|
+
</xs:sequence>
|
|
141
|
+
</xs:complexType>
|
|
142
|
+
|
|
143
|
+
<xs:complexType name="ProfilesType">
|
|
144
|
+
<xs:sequence>
|
|
145
|
+
<xs:element name="profile" type="sr:ProfileType" maxOccurs="unbounded"/>
|
|
146
|
+
</xs:sequence>
|
|
147
|
+
</xs:complexType>
|
|
148
|
+
|
|
149
|
+
<xs:complexType name="ProfileType">
|
|
150
|
+
<xs:sequence>
|
|
151
|
+
<xs:element name="network" type="xs:string" minOccurs="0"/>
|
|
152
|
+
<xs:element name="username" type="xs:string" minOccurs="0"/>
|
|
153
|
+
<xs:element name="url" type="xs:anyURI" minOccurs="0"/>
|
|
154
|
+
</xs:sequence>
|
|
155
|
+
</xs:complexType>
|
|
156
|
+
|
|
157
|
+
<xs:complexType name="NationalitiesType">
|
|
158
|
+
<xs:sequence>
|
|
159
|
+
<xs:element name="nationality" type="sr:NationalityType" maxOccurs="unbounded"/>
|
|
160
|
+
</xs:sequence>
|
|
161
|
+
</xs:complexType>
|
|
162
|
+
|
|
163
|
+
<xs:complexType name="NationalityType">
|
|
164
|
+
<xs:sequence>
|
|
165
|
+
<xs:element name="country" type="sr:countryCodeType" minOccurs="0"/>
|
|
166
|
+
<xs:element name="born" type="xs:boolean" minOccurs="0"/>
|
|
167
|
+
</xs:sequence>
|
|
168
|
+
</xs:complexType>
|
|
169
|
+
|
|
170
|
+
<xs:complexType name="WorkAuthorizationType">
|
|
171
|
+
<xs:sequence>
|
|
172
|
+
<xs:element name="authorization" type="sr:WorkAuthorizationEntryType" maxOccurs="unbounded"/>
|
|
173
|
+
</xs:sequence>
|
|
174
|
+
</xs:complexType>
|
|
175
|
+
|
|
176
|
+
<xs:complexType name="WorkAuthorizationEntryType">
|
|
177
|
+
<xs:sequence>
|
|
178
|
+
<xs:element name="country" type="sr:countryCodeType"/>
|
|
179
|
+
<xs:element name="status" type="xs:string" minOccurs="0"/>
|
|
180
|
+
<xs:element name="rightToWork" type="xs:boolean" minOccurs="0"/>
|
|
181
|
+
<xs:element name="visaType" type="xs:string" minOccurs="0"/>
|
|
182
|
+
<xs:element name="validFrom" type="sr:iso8601DateType" minOccurs="0"/>
|
|
183
|
+
<xs:element name="validTo" type="sr:iso8601DateType" minOccurs="0"/>
|
|
184
|
+
<xs:element name="notes" type="xs:string" minOccurs="0"/>
|
|
185
|
+
</xs:sequence>
|
|
186
|
+
</xs:complexType>
|
|
187
|
+
|
|
188
|
+
<!-- Work Section -->
|
|
189
|
+
<xs:complexType name="WorkType">
|
|
190
|
+
<xs:sequence>
|
|
191
|
+
<xs:element name="name" type="xs:string" minOccurs="0"/>
|
|
192
|
+
<xs:element name="industry" type="xs:string" minOccurs="0"/>
|
|
193
|
+
<xs:element name="location" type="sr:WorkLocationAddressType" minOccurs="0"/>
|
|
194
|
+
<xs:element name="workLocation" type="xs:string" minOccurs="0"/>
|
|
195
|
+
<xs:element name="contactDetails" type="sr:ContactDetailsType" minOccurs="0"/>
|
|
196
|
+
<xs:element name="description" type="xs:string" minOccurs="0"/>
|
|
197
|
+
<xs:element name="position" type="xs:string" minOccurs="0"/>
|
|
198
|
+
<xs:element name="workType" type="sr:workTypeEnum" minOccurs="0"/>
|
|
199
|
+
<xs:element name="url" type="xs:anyURI" minOccurs="0"/>
|
|
200
|
+
<xs:element name="startDate" type="sr:iso8601DateType" minOccurs="0"/>
|
|
201
|
+
<xs:element name="endDate" type="sr:iso8601DateType" minOccurs="0"/>
|
|
202
|
+
<xs:element name="summary" type="xs:string" minOccurs="0"/>
|
|
203
|
+
<xs:element name="highlights" type="sr:StringListType" minOccurs="0"/>
|
|
204
|
+
</xs:sequence>
|
|
205
|
+
</xs:complexType>
|
|
206
|
+
|
|
207
|
+
<xs:complexType name="WorkLocationAddressType">
|
|
208
|
+
<xs:sequence>
|
|
209
|
+
<xs:element name="address" type="xs:string" minOccurs="0"/>
|
|
210
|
+
<xs:element name="city" type="xs:string" minOccurs="0"/>
|
|
211
|
+
<xs:element name="region" type="xs:string" minOccurs="0"/>
|
|
212
|
+
<xs:element name="postalCode" type="xs:string" minOccurs="0"/>
|
|
213
|
+
<xs:element name="countryCode" type="sr:countryCodeType" minOccurs="0"/>
|
|
214
|
+
<xs:element name="country" type="xs:string" minOccurs="0"/>
|
|
215
|
+
</xs:sequence>
|
|
216
|
+
</xs:complexType>
|
|
217
|
+
|
|
218
|
+
<xs:complexType name="ContactDetailsType">
|
|
219
|
+
<xs:sequence>
|
|
220
|
+
<xs:element name="email" type="xs:string" minOccurs="0"/>
|
|
221
|
+
<xs:element name="phone" type="xs:string" minOccurs="0"/>
|
|
222
|
+
<xs:element name="fax" type="xs:string" minOccurs="0"/>
|
|
223
|
+
</xs:sequence>
|
|
224
|
+
</xs:complexType>
|
|
225
|
+
|
|
226
|
+
<!-- Volunteer Section -->
|
|
227
|
+
<xs:complexType name="VolunteerType">
|
|
228
|
+
<xs:sequence>
|
|
229
|
+
<xs:element name="organization" type="xs:string" minOccurs="0"/>
|
|
230
|
+
<xs:element name="position" type="xs:string" minOccurs="0"/>
|
|
231
|
+
<xs:element name="url" type="xs:anyURI" minOccurs="0"/>
|
|
232
|
+
<xs:element name="startDate" type="sr:iso8601DateType" minOccurs="0"/>
|
|
233
|
+
<xs:element name="endDate" type="sr:iso8601DateType" minOccurs="0"/>
|
|
234
|
+
<xs:element name="summary" type="xs:string" minOccurs="0"/>
|
|
235
|
+
<xs:element name="highlights" type="sr:StringListType" minOccurs="0"/>
|
|
236
|
+
</xs:sequence>
|
|
237
|
+
</xs:complexType>
|
|
238
|
+
|
|
239
|
+
<!-- Education Section -->
|
|
240
|
+
<xs:complexType name="EducationType">
|
|
241
|
+
<xs:sequence>
|
|
242
|
+
<xs:element name="institution" type="xs:string" minOccurs="0"/>
|
|
243
|
+
<xs:element name="school" type="xs:string" minOccurs="0"/>
|
|
244
|
+
<xs:element name="url" type="xs:anyURI" minOccurs="0"/>
|
|
245
|
+
<xs:element name="area" type="xs:string" minOccurs="0"/>
|
|
246
|
+
<xs:element name="studyType" type="xs:string" minOccurs="0"/>
|
|
247
|
+
<xs:element name="degree" type="xs:string" minOccurs="0"/>
|
|
248
|
+
<xs:element name="description" type="xs:string" minOccurs="0"/>
|
|
249
|
+
<xs:element name="startDate" type="sr:iso8601DateType" minOccurs="0"/>
|
|
250
|
+
<xs:element name="endDate" type="sr:iso8601DateType" minOccurs="0"/>
|
|
251
|
+
<xs:element name="score" type="xs:string" minOccurs="0"/>
|
|
252
|
+
<xs:element name="gpa" type="xs:string" minOccurs="0"/>
|
|
253
|
+
<xs:element name="location" type="xs:string" minOccurs="0"/>
|
|
254
|
+
<xs:element name="country" type="sr:countryCodeType" minOccurs="0"/>
|
|
255
|
+
<xs:element name="courses" type="sr:StringListType" minOccurs="0"/>
|
|
256
|
+
</xs:sequence>
|
|
257
|
+
</xs:complexType>
|
|
258
|
+
|
|
259
|
+
<!-- Awards Section -->
|
|
260
|
+
<xs:complexType name="AwardType">
|
|
261
|
+
<xs:sequence>
|
|
262
|
+
<xs:element name="title" type="xs:string" minOccurs="0"/>
|
|
263
|
+
<xs:element name="date" type="sr:iso8601DateType" minOccurs="0"/>
|
|
264
|
+
<xs:element name="awarder" type="xs:string" minOccurs="0"/>
|
|
265
|
+
<xs:element name="summary" type="xs:string" minOccurs="0"/>
|
|
266
|
+
</xs:sequence>
|
|
267
|
+
</xs:complexType>
|
|
268
|
+
|
|
269
|
+
<!-- Certificates Section -->
|
|
270
|
+
<xs:complexType name="CertificateType">
|
|
271
|
+
<xs:sequence>
|
|
272
|
+
<xs:element name="name" type="xs:string" minOccurs="0"/>
|
|
273
|
+
<xs:element name="date" type="sr:iso8601DateType" minOccurs="0"/>
|
|
274
|
+
<xs:element name="url" type="xs:anyURI" minOccurs="0"/>
|
|
275
|
+
<xs:element name="issuer" type="xs:string" minOccurs="0"/>
|
|
276
|
+
</xs:sequence>
|
|
277
|
+
</xs:complexType>
|
|
278
|
+
|
|
279
|
+
<!-- Publications Section -->
|
|
280
|
+
<xs:complexType name="PublicationType">
|
|
281
|
+
<xs:sequence>
|
|
282
|
+
<xs:element name="name" type="xs:string" minOccurs="0"/>
|
|
283
|
+
<xs:element name="publisher" type="xs:string" minOccurs="0"/>
|
|
284
|
+
<xs:element name="releaseDate" type="sr:iso8601DateType" minOccurs="0"/>
|
|
285
|
+
<xs:element name="url" type="xs:anyURI" minOccurs="0"/>
|
|
286
|
+
<xs:element name="summary" type="xs:string" minOccurs="0"/>
|
|
287
|
+
</xs:sequence>
|
|
288
|
+
</xs:complexType>
|
|
289
|
+
|
|
290
|
+
<!-- Skills Section -->
|
|
291
|
+
<xs:complexType name="SkillType">
|
|
292
|
+
<xs:sequence>
|
|
293
|
+
<xs:element name="name" type="xs:string" minOccurs="0"/>
|
|
294
|
+
<xs:element name="level" type="sr:proficiencyLevelType" minOccurs="0"/>
|
|
295
|
+
<xs:element name="yearsOfExperience" type="xs:decimal" minOccurs="0"/>
|
|
296
|
+
<xs:element name="comment" type="xs:string" minOccurs="0"/>
|
|
297
|
+
<xs:element name="keywords" type="sr:StringListType" minOccurs="0"/>
|
|
298
|
+
</xs:sequence>
|
|
299
|
+
</xs:complexType>
|
|
300
|
+
|
|
301
|
+
<!-- Tools Section -->
|
|
302
|
+
<xs:complexType name="ToolType">
|
|
303
|
+
<xs:sequence>
|
|
304
|
+
<xs:element name="name" type="xs:string" minOccurs="0"/>
|
|
305
|
+
<xs:element name="group" type="xs:string" minOccurs="0"/>
|
|
306
|
+
<xs:element name="category" type="xs:string" minOccurs="0"/>
|
|
307
|
+
<xs:element name="yearsOfExperience" type="xs:decimal" minOccurs="0"/>
|
|
308
|
+
<xs:element name="level" type="sr:proficiencyLevelType" minOccurs="0"/>
|
|
309
|
+
<xs:element name="comment" type="xs:string" minOccurs="0"/>
|
|
310
|
+
<xs:element name="url" type="xs:anyURI" minOccurs="0"/>
|
|
311
|
+
</xs:sequence>
|
|
312
|
+
</xs:complexType>
|
|
313
|
+
|
|
314
|
+
<!-- Languages Section -->
|
|
315
|
+
<xs:complexType name="LanguageType">
|
|
316
|
+
<xs:sequence>
|
|
317
|
+
<xs:element name="language" type="xs:string" minOccurs="0"/>
|
|
318
|
+
<xs:element name="fluency" type="sr:languageFluencyType" minOccurs="0"/>
|
|
319
|
+
</xs:sequence>
|
|
320
|
+
</xs:complexType>
|
|
321
|
+
|
|
322
|
+
<!-- Interests Section -->
|
|
323
|
+
<xs:complexType name="InterestType">
|
|
324
|
+
<xs:sequence>
|
|
325
|
+
<xs:element name="name" type="xs:string" minOccurs="0"/>
|
|
326
|
+
<xs:element name="keywords" type="sr:StringListType" minOccurs="0"/>
|
|
327
|
+
</xs:sequence>
|
|
328
|
+
</xs:complexType>
|
|
329
|
+
|
|
330
|
+
<!-- References Section -->
|
|
331
|
+
<xs:complexType name="ReferenceType">
|
|
332
|
+
<xs:sequence>
|
|
333
|
+
<xs:element name="name" type="xs:string" minOccurs="0"/>
|
|
334
|
+
<xs:element name="reference" type="xs:string" minOccurs="0"/>
|
|
335
|
+
</xs:sequence>
|
|
336
|
+
</xs:complexType>
|
|
337
|
+
|
|
338
|
+
<!-- Projects Section -->
|
|
339
|
+
<xs:complexType name="ProjectType">
|
|
340
|
+
<xs:sequence>
|
|
341
|
+
<xs:element name="name" type="xs:string" minOccurs="0"/>
|
|
342
|
+
<xs:element name="description" type="xs:string" minOccurs="0"/>
|
|
343
|
+
<xs:element name="highlights" type="sr:StringListType" minOccurs="0"/>
|
|
344
|
+
<xs:element name="keywords" type="sr:StringListType" minOccurs="0"/>
|
|
345
|
+
<xs:element name="startDate" type="sr:iso8601DateType" minOccurs="0"/>
|
|
346
|
+
<xs:element name="endDate" type="sr:iso8601DateType" minOccurs="0"/>
|
|
347
|
+
<xs:element name="url" type="xs:anyURI" minOccurs="0"/>
|
|
348
|
+
<xs:element name="roles" type="sr:StringListType" minOccurs="0"/>
|
|
349
|
+
<xs:element name="entity" type="xs:string" minOccurs="0"/>
|
|
350
|
+
<xs:element name="type" type="xs:string" minOccurs="0"/>
|
|
351
|
+
</xs:sequence>
|
|
352
|
+
</xs:complexType>
|
|
353
|
+
|
|
354
|
+
<!-- Meta Section -->
|
|
355
|
+
<xs:complexType name="MetaType">
|
|
356
|
+
<xs:sequence>
|
|
357
|
+
<xs:element name="canonical" type="xs:anyURI" minOccurs="0"/>
|
|
358
|
+
<xs:element name="version" type="xs:string" minOccurs="0"/>
|
|
359
|
+
<xs:element name="lastModified" type="xs:dateTime" minOccurs="0"/>
|
|
360
|
+
<xs:element name="dateCreated" type="xs:dateTime" minOccurs="0"/>
|
|
361
|
+
<xs:element name="dateModified" type="xs:dateTime" minOccurs="0"/>
|
|
362
|
+
<xs:element name="datePublished" type="xs:dateTime" minOccurs="0"/>
|
|
363
|
+
</xs:sequence>
|
|
364
|
+
</xs:complexType>
|
|
365
|
+
|
|
366
|
+
</xs:schema>
|