@docx4j/jsonix 3.2.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.
@@ -0,0 +1,655 @@
1
+ {
2
+ "id" : "http://www.jsonix.org/jsonschemas/w3c/2001/XMLSchema.jsonschema#",
3
+ "definitions" : {
4
+ "anyType" : {
5
+ "description" : "http://www.w3.org/TR/2001/REC-xmlschema-1-20010502/#key-urType"
6
+ },
7
+ "anySimpleType" : {
8
+ "type" : [ "string", "number", "integer", "boolean", "null" ],
9
+ "description" : "http://www.w3.org/TR/xmlschema-2/#dt-anySimpleType"
10
+ },
11
+ "string" : {
12
+ "type" : [ "string", "null" ],
13
+ "description" : "http://www.w3.org/TR/xmlschema-2/#string"
14
+ },
15
+ "normalizedString" : {
16
+ "anyOf" : [ {
17
+ "type" : "string"
18
+ }, {
19
+ "type" : "null"
20
+ } ],
21
+ "description" : "http://www.w3.org/TR/xmlschema-2/#normalizedString"
22
+ },
23
+ "token" : {
24
+ "anyOf" : [ {
25
+ "type" : "string"
26
+ }, {
27
+ "type" : "null"
28
+ } ],
29
+ "description" : "http://www.w3.org/TR/xmlschema-2/#normalizedString"
30
+ },
31
+ "language" : {
32
+ "anyOf" : [ {
33
+ "type" : "string"
34
+ }, {
35
+ "type" : "null"
36
+ } ],
37
+ "description" : "http://www.w3.org/TR/xmlschema-2/#language"
38
+ },
39
+ "Name" : {
40
+ "anyOf" : [ {
41
+ "type" : "string"
42
+ }, {
43
+ "type" : "null"
44
+ } ],
45
+ "description" : "http://www.w3.org/TR/xmlschema-2/#Name"
46
+ },
47
+ "NCName" : {
48
+ "anyOf" : [ {
49
+ "type" : "string"
50
+ }, {
51
+ "type" : "null"
52
+ } ],
53
+ "description" : "http://www.w3.org/TR/xmlschema-2/#NCName"
54
+ },
55
+ "ID" : {
56
+ "anyOf" : [ {
57
+ "type" : "string"
58
+ }, {
59
+ "type" : "null"
60
+ } ],
61
+ "description" : "http://www.w3.org/TR/xmlschema-2/#ID"
62
+ },
63
+ "IDREF" : {
64
+ "anyOf" : [ {
65
+ "type" : "string"
66
+ }, {
67
+ "type" : "null"
68
+ } ],
69
+ "description" : "http://www.w3.org/TR/xmlschema-2/#IDREF"
70
+ },
71
+ "IDREFS" : {
72
+ "anyOf" : [ {
73
+ "type" : "array",
74
+ "item" : {
75
+ "type" : "string"
76
+ }
77
+ }, {
78
+ "type" : "null"
79
+ } ],
80
+ "description" : "http://www.w3.org/TR/xmlschema-2/#IDREFS"
81
+ },
82
+ "ENTITY" : {
83
+ "anyOf" : [ {
84
+ "type" : "string"
85
+ }, {
86
+ "type" : "null"
87
+ } ],
88
+ "description" : "http://www.w3.org/TR/xmlschema-2/#ENTITY"
89
+ },
90
+ "ENTITIES" : {
91
+ "anyOf" : [ {
92
+ "type" : "array",
93
+ "item" : {
94
+ "type" : "string"
95
+ }
96
+ }, {
97
+ "type" : "null"
98
+ } ],
99
+ "description" : "http://www.w3.org/TR/xmlschema-2/#ENTITIES"
100
+ },
101
+ "NMTOKEN" : {
102
+ "anyOf" : [ {
103
+ "type" : "string"
104
+ }, {
105
+ "type" : "null"
106
+ } ],
107
+ "description" : "http://www.w3.org/TR/xmlschema-2/#NMTOKEN"
108
+ },
109
+ "NMTOKENS" : {
110
+ "anyOf" : [ {
111
+ "type" : "array",
112
+ "item" : {
113
+ "type" : "string"
114
+ }
115
+ }, {
116
+ "type" : "null"
117
+ } ],
118
+ "description" : "http://www.w3.org/TR/xmlschema-2/#NMTOKENS"
119
+ },
120
+ "boolean" : {
121
+ "type" : [ "boolean", "null" ],
122
+ "description" : "http://www.w3.org/TR/xmlschema-2/#boolean"
123
+ },
124
+ "base64Binary" : {
125
+ "anyOf" : [ {
126
+ "type" : "array",
127
+ "item" : {
128
+ "$ref" : "#/definitions/unsignedByte"
129
+ }
130
+ }, {
131
+ "type" : "null"
132
+ } ],
133
+ "description" : "http://www.w3.org/TR/xmlschema-2/#base64Binary"
134
+ },
135
+ "hexBinary" : {
136
+ "anyOf" : [ {
137
+ "type" : "array",
138
+ "item" : {
139
+ "$ref" : "#/definitions/unsignedByte"
140
+ }
141
+ }, {
142
+ "type" : "null"
143
+ } ],
144
+ "description" : "http://www.w3.org/TR/xmlschema-2/#hexBinary"
145
+ },
146
+ "float" : {
147
+ "type" : [ "number", "null" ],
148
+ "description" : "http://www.w3.org/TR/xmlschema-2/#float"
149
+ },
150
+ "decimal" : {
151
+ "type" : [ "number", "null" ],
152
+ "description" : "http://www.w3.org/TR/xmlschema-2/#decimal"
153
+ },
154
+ "integer" : {
155
+ "type" : [ "integer", "null" ],
156
+ "description" : "http://www.w3.org/TR/xmlschema-2/#decimal"
157
+ },
158
+ "nonPositiveInteger" : {
159
+ "anyOf" : [ {
160
+ "type" : "integer",
161
+ "maximum" : 0
162
+ }, {
163
+ "type" : "null"
164
+ } ],
165
+ "description" : "http://www.w3.org/TR/xmlschema-2/#nonPositiveInteger"
166
+ },
167
+ "negativeInteger" : {
168
+ "anyOf" : [ {
169
+ "type" : "integer",
170
+ "maximum" : -1
171
+ }, {
172
+ "type" : "null"
173
+ } ],
174
+ "description" : "http://www.w3.org/TR/xmlschema-2/#negativeInteger"
175
+ },
176
+ "long" : {
177
+ "anyOf" : [ {
178
+ "type" : "integer",
179
+ "maximum" : 9223372036854775807,
180
+ "minimum" : -9223372036854775808
181
+ }, {
182
+ "type" : "null"
183
+ } ],
184
+ "description" : "http://www.w3.org/TR/xmlschema-2/#long"
185
+ },
186
+ "int" : {
187
+ "anyOf" : [ {
188
+ "type" : "integer",
189
+ "maximum" : 2147483647,
190
+ "minimum" : -2147483648
191
+ }, {
192
+ "type" : "null"
193
+ } ],
194
+ "description" : "http://www.w3.org/TR/xmlschema-2/#int"
195
+ },
196
+ "short" : {
197
+ "anyOf" : [ {
198
+ "type" : "integer",
199
+ "maximum" : 32767,
200
+ "minimum" : -32768
201
+ }, {
202
+ "type" : "null"
203
+ } ],
204
+ "description" : "http://www.w3.org/TR/xmlschema-2/#short"
205
+ },
206
+ "byte" : {
207
+ "anyOf" : [ {
208
+ "type" : "integer",
209
+ "maximum" : 127,
210
+ "minimum" : -128
211
+ }, {
212
+ "type" : "null"
213
+ } ],
214
+ "description" : "http://www.w3.org/TR/xmlschema-2/#byte"
215
+ },
216
+ "nonNegativeInteger" : {
217
+ "anyOf" : [ {
218
+ "type" : "integer",
219
+ "minimum" : 0
220
+ }, {
221
+ "type" : "null"
222
+ } ],
223
+ "description" : "http://www.w3.org/TR/xmlschema-2/#nonNegativeInteger"
224
+ },
225
+ "unsignedLong" : {
226
+ "anyOf" : [ {
227
+ "type" : "integer",
228
+ "minimum" : 0,
229
+ "maximum" : 18446744073709551615
230
+ }, {
231
+ "type" : "null"
232
+ } ],
233
+ "description" : "http://www.w3.org/TR/xmlschema-2/#unsignedLong"
234
+ },
235
+ "unsignedInt" : {
236
+ "anyOf" : [ {
237
+ "type" : "integer",
238
+ "minimum" : 0,
239
+ "maximum" : 4294967295
240
+ }, {
241
+ "type" : "null"
242
+ } ],
243
+ "description" : "http://www.w3.org/TR/xmlschema-2/#unsignedInt"
244
+ },
245
+ "unsignedShort" : {
246
+ "anyOf" : [ {
247
+ "type" : "integer",
248
+ "minimum" : 0,
249
+ "maximum" : 65535
250
+ }, {
251
+ "type" : "null"
252
+ } ],
253
+ "description" : "http://www.w3.org/TR/xmlschema-2/#unsignedShort"
254
+ },
255
+ "unsignedByte" : {
256
+ "anyOf" : [ {
257
+ "type" : "integer",
258
+ "minimum" : 0,
259
+ "maximum" : 255
260
+ }, {
261
+ "type" : "null"
262
+ } ],
263
+ "description" : "http://www.w3.org/TR/xmlschema-2/#unsignedByte"
264
+ },
265
+ "positiveInteger" : {
266
+ "anyOf" : [ {
267
+ "type" : "integer",
268
+ "minimum" : 1
269
+ }, {
270
+ "type" : "null"
271
+ } ],
272
+ "description" : "http://www.w3.org/TR/xmlschema-2/#positiveInteger"
273
+ },
274
+ "double" : {
275
+ "type" : [ "number", "null" ],
276
+ "description" : "http://www.w3.org/TR/xmlschema-2/#double"
277
+ },
278
+ "anyURI" : {
279
+ "anyOf" : [ {
280
+ "type" : "string",
281
+ "format" : "uri"
282
+ }, {
283
+ "type" : "null"
284
+ } ],
285
+ "description" : "http://www.w3.org/TR/xmlschema-2/#anyURI"
286
+ },
287
+ "QName" : {
288
+ "anyOf" : [ {
289
+ "type" : "object",
290
+ "properties" : {
291
+ "namespaceURI" : {
292
+ "anyOf" : [ {
293
+ "$ref" : "#/definitions/anyURI"
294
+ }, {
295
+ "type" : "string",
296
+ "enum" : [ "" ]
297
+ } ]
298
+ },
299
+ "localPart" : {
300
+ "$ref" : "#/definitions/NCName"
301
+ },
302
+ "prefix" : {
303
+ "anyOf" : [ {
304
+ "$ref" : "#/definitions/NCName"
305
+ }, {
306
+ "type" : "string",
307
+ "enum" : [ "" ]
308
+ } ]
309
+ }
310
+ },
311
+ "required" : [ "localPart" ]
312
+ }, {
313
+ "type" : "null"
314
+ } ],
315
+ "description" : "http://www.w3.org/TR/xmlschema-2/#QName"
316
+ },
317
+ "NOTATION" : {
318
+ "anyOf" : [ {
319
+ "$ref" : "#/definitions/QName"
320
+ }, {
321
+ "type" : "null"
322
+ } ],
323
+ "description" : "http://www.w3.org/TR/xmlschema-2/#NOTATION"
324
+ },
325
+ "duration" : {
326
+ "anyOf" : [ {
327
+ "type" : "object",
328
+ "properties" : {
329
+ "sign" : {
330
+ "type" : "integer",
331
+ "enum" : [ -1, 1 ]
332
+ },
333
+ "years" : {
334
+ "$ref" : "#/definitions/nonNegativeInteger"
335
+ },
336
+ "months" : {
337
+ "$ref" : "#/definitions/nonNegativeInteger"
338
+ },
339
+ "days" : {
340
+ "$ref" : "#/definitions/nonNegativeInteger"
341
+ },
342
+ "hours" : {
343
+ "$ref" : "#/definitions/nonNegativeInteger"
344
+ },
345
+ "minutes" : {
346
+ "$ref" : "#/definitions/nonNegativeInteger"
347
+ },
348
+ "seconds" : {
349
+ "allOf" : [ {
350
+ "$ref" : "#/definitions/decimal"
351
+ }, {
352
+ "minimum" : 0
353
+ } ]
354
+ }
355
+ },
356
+ "minProperties" : 1
357
+ }, {
358
+ "type" : "null"
359
+ } ],
360
+ "description" : "http://www.w3.org/TR/xmlschema-2/#duration"
361
+ },
362
+ "dateTime" : {
363
+ "anyOf" : [ {
364
+ "type" : "object",
365
+ "properties" : {
366
+ "year" : {
367
+ "$ref" : "#/definitions/integer"
368
+ },
369
+ "month" : {
370
+ "allOf" : [ {
371
+ "$ref" : "#/definitions/unsignedByte"
372
+ }, {
373
+ "minimum" : 1,
374
+ "maximum" : 12
375
+ } ]
376
+ },
377
+ "day" : {
378
+ "allOf" : [ {
379
+ "$ref" : "#/definitions/unsignedByte"
380
+ }, {
381
+ "minimum" : 1,
382
+ "maximum" : 31
383
+ } ]
384
+ },
385
+ "hour" : {
386
+ "allOf" : [ {
387
+ "$ref" : "#/definitions/unsignedByte"
388
+ }, {
389
+ "minimum" : 0,
390
+ "maximum" : 23
391
+ } ]
392
+ },
393
+ "minute" : {
394
+ "allOf" : [ {
395
+ "$ref" : "#/definitions/unsignedByte"
396
+ }, {
397
+ "minimum" : 0,
398
+ "maximum" : 59
399
+ } ]
400
+ },
401
+ "second" : {
402
+ "allOf" : [ {
403
+ "$ref" : "#/definitions/unsignedByte"
404
+ }, {
405
+ "minimum" : 0,
406
+ "maximum" : 59
407
+ } ]
408
+ },
409
+ "fractionalSecond" : {
410
+ "allOf" : [ {
411
+ "$ref" : "#/definitions/decimal"
412
+ }, {
413
+ "minimum" : 0,
414
+ "exclusiveMaximum" : 1
415
+ } ]
416
+ },
417
+ "timezone" : {
418
+ "allOf" : [ {
419
+ "$ref" : "#/definitions/integer"
420
+ }, {
421
+ "minimum" : -1440,
422
+ "maximum" : 1439
423
+ } ]
424
+ }
425
+ }
426
+ }, {
427
+ "type" : "null"
428
+ } ],
429
+ "description" : "http://www.w3.org/TR/xmlschema-2/#dateTime"
430
+ },
431
+ "date" : {
432
+ "anyOf" : [ {
433
+ "type" : "object",
434
+ "properties" : {
435
+ "year" : {
436
+ "$ref" : "#/definitions/integer"
437
+ },
438
+ "month" : {
439
+ "allOf" : [ {
440
+ "$ref" : "#/definitions/unsignedByte"
441
+ }, {
442
+ "minimum" : 1,
443
+ "maximum" : 12
444
+ } ]
445
+ },
446
+ "day" : {
447
+ "allOf" : [ {
448
+ "$ref" : "#/definitions/unsignedByte"
449
+ }, {
450
+ "minimum" : 1,
451
+ "maximum" : 31
452
+ } ]
453
+ },
454
+ "timezone" : {
455
+ "allOf" : [ {
456
+ "$ref" : "#/definitions/integer"
457
+ }, {
458
+ "minimum" : -1440,
459
+ "maximum" : 1439
460
+ } ]
461
+ }
462
+ }
463
+ }, {
464
+ "type" : "null"
465
+ } ],
466
+ "description" : "http://www.w3.org/TR/xmlschema-2/#date"
467
+ },
468
+ "time" : {
469
+ "anyOf" : [ {
470
+ "type" : "object",
471
+ "properties" : {
472
+ "hour" : {
473
+ "allOf" : [ {
474
+ "$ref" : "#/definitions/unsignedByte"
475
+ }, {
476
+ "minimum" : 0,
477
+ "maximum" : 23
478
+ } ]
479
+ },
480
+ "minute" : {
481
+ "allOf" : [ {
482
+ "$ref" : "#/definitions/unsignedByte"
483
+ }, {
484
+ "minimum" : 0,
485
+ "maximum" : 59
486
+ } ]
487
+ },
488
+ "second" : {
489
+ "allOf" : [ {
490
+ "$ref" : "#/definitions/unsignedByte"
491
+ }, {
492
+ "minimum" : 0,
493
+ "maximum" : 59
494
+ } ]
495
+ },
496
+ "fractionalSecond" : {
497
+ "allOf" : [ {
498
+ "$ref" : "#/definitions/decimal"
499
+ }, {
500
+ "minimum" : 0,
501
+ "exclusiveMaximum" : 1
502
+ } ]
503
+ },
504
+ "timezone" : {
505
+ "allOf" : [ {
506
+ "$ref" : "#/definitions/integer"
507
+ }, {
508
+ "minimum" : -1440,
509
+ "maximum" : 1439
510
+ } ]
511
+ }
512
+ }
513
+ }, {
514
+ "type" : "null"
515
+ } ],
516
+ "description" : "http://www.w3.org/TR/xmlschema-2/#time"
517
+ },
518
+ "gYearMonth" : {
519
+ "anyOf" : [ {
520
+ "type" : "object",
521
+ "properties" : {
522
+ "year" : {
523
+ "$ref" : "#/definitions/integer"
524
+ },
525
+ "month" : {
526
+ "allOf" : [ {
527
+ "$ref" : "#/definitions/unsignedByte"
528
+ }, {
529
+ "minimum" : 1,
530
+ "maximum" : 12
531
+ } ]
532
+ },
533
+ "timezone" : {
534
+ "allOf" : [ {
535
+ "$ref" : "#/definitions/integer"
536
+ }, {
537
+ "minimum" : -1440,
538
+ "maximum" : 1439
539
+ } ]
540
+ }
541
+ }
542
+ }, {
543
+ "type" : "null"
544
+ } ],
545
+ "description" : "http://www.w3.org/TR/xmlschema-2/#gYearMonth"
546
+ },
547
+ "gYear" : {
548
+ "anyOf" : [ {
549
+ "type" : "object",
550
+ "properties" : {
551
+ "year" : {
552
+ "$ref" : "#/definitions/integer"
553
+ },
554
+ "timezone" : {
555
+ "allOf" : [ {
556
+ "$ref" : "#/definitions/integer"
557
+ }, {
558
+ "minimum" : -1440,
559
+ "maximum" : 1439
560
+ } ]
561
+ }
562
+ }
563
+ }, {
564
+ "type" : "null"
565
+ } ],
566
+ "description" : "http://www.w3.org/TR/xmlschema-2/#gYear"
567
+ },
568
+ "gMonthDay" : {
569
+ "anyOf" : [ {
570
+ "type" : "object",
571
+ "properties" : {
572
+ "month" : {
573
+ "allOf" : [ {
574
+ "$ref" : "#/definitions/unsignedByte"
575
+ }, {
576
+ "minimum" : 1,
577
+ "maximum" : 12
578
+ } ]
579
+ },
580
+ "day" : {
581
+ "allOf" : [ {
582
+ "$ref" : "#/definitions/unsignedByte"
583
+ }, {
584
+ "minimum" : 1,
585
+ "maximum" : 31
586
+ } ]
587
+ },
588
+ "timezone" : {
589
+ "allOf" : [ {
590
+ "$ref" : "#/definitions/integer"
591
+ }, {
592
+ "minimum" : -1440,
593
+ "maximum" : 1439
594
+ } ]
595
+ }
596
+ }
597
+ }, {
598
+ "type" : "null"
599
+ } ],
600
+ "description" : "http://www.w3.org/TR/xmlschema-2/#gMonthDay"
601
+ },
602
+ "gDay" : {
603
+ "anyOf" : [ {
604
+ "type" : "object",
605
+ "properties" : {
606
+ "day" : {
607
+ "allOf" : [ {
608
+ "$ref" : "#/definitions/unsignedByte"
609
+ }, {
610
+ "minimum" : 1,
611
+ "maximum" : 31
612
+ } ]
613
+ },
614
+ "timezone" : {
615
+ "allOf" : [ {
616
+ "$ref" : "#/definitions/integer"
617
+ }, {
618
+ "minimum" : -1440,
619
+ "maximum" : 1439
620
+ } ]
621
+ }
622
+ }
623
+ }, {
624
+ "type" : "null"
625
+ } ],
626
+ "description" : "http://www.w3.org/TR/xmlschema-2/#gDay"
627
+ },
628
+ "gMonth" : {
629
+ "anyOf" : [ {
630
+ "type" : "object",
631
+ "properties" : {
632
+ "month" : {
633
+ "allOf" : [ {
634
+ "$ref" : "#/definitions/unsignedByte"
635
+ }, {
636
+ "minimum" : 1,
637
+ "maximum" : 12
638
+ } ]
639
+ },
640
+ "timezone" : {
641
+ "allOf" : [ {
642
+ "$ref" : "#/definitions/integer"
643
+ }, {
644
+ "minimum" : -1440,
645
+ "maximum" : 1439
646
+ } ]
647
+ }
648
+ }
649
+ }, {
650
+ "type" : "null"
651
+ } ],
652
+ "description" : "http://www.w3.org/TR/xmlschema-2/#gMonth"
653
+ }
654
+ }
655
+ }