-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathacal-core-yaml-v1.0-structure.schema.yaml
More file actions
1134 lines (1030 loc) · 27.3 KB
/
Copy pathacal-core-yaml-v1.0-structure.schema.yaml
File metadata and controls
1134 lines (1030 loc) · 27.3 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
$schema: "https://json-schema.org/draft/2020-12/schema"
$id: "acal-core-yaml-v1.0-structure.schema.yaml"
title: "YACAL v1.0 core structural schema"
description: >
Core structural schema for the YAML representation of ACAL Version 1.0.
This schema validates parsed YACAL data directly. It focuses on root forms,
object shapes, property names, multiplicities, wrapper-key structures, and
reusable primitive patterns. YAML parser conformance rules and higher-order
ACAL constraints remain outside this artifact.
$comment: >
This first core schema draft covers the core YACAL document forms plus the
standalone ShortIdSet artifact form used by the YACAL work product. Profile
extension points such as PolicyDefaults, RequestDefaults, StatusDetail, and
selector extensions are exposed through explicit dynamic extension hooks for
later composition. Higher-order invariants are complemented by the companion
core constraint catalog in acal-core-yaml-v1.0-constraints.yaml.
oneOf:
- $ref: "#/$defs/PolicyDocument"
- $ref: "#/$defs/BundleDocument"
- $ref: "#/$defs/RequestDocument"
- $ref: "#/$defs/ResponseDocument"
- $ref: "#/$defs/ShortIdSetDocument"
$defs:
URIType:
type: string
format: uri-reference
minLength: 1
StringType:
type: string
BooleanType:
type: boolean
NonNegativeIntegerType:
type: integer
minimum: 0
VersionType:
type: string
pattern: "^(0|[1-9]\\d*)(\\.(0|[1-9]\\d*)){0,3}$"
VersionMatchType:
type: string
pattern: "^(0|[1-9]\\d*|\\*)(\\.(0|[1-9]\\d*|\\*|\\+)){0,3}$"
ShortIdNameType:
type: string
pattern: "^[A-Za-z][0-9A-Za-z]*(-[0-9A-Za-z]+)*$"
ShortIdValueType:
type: string
pattern: "^[!#-;=?-\\[\\]_a-z~]*(\\{[A-Za-z][0-9A-Za-z]*(-[0-9A-Za-z]+)*\\}[!#-;=?-\\[\\]_a-z~]*)*$"
minLength: 1
IdentifierType:
type: string
pattern: "^[^{}]*(\\{[A-Za-z][0-9A-Za-z]*(-[0-9A-Za-z]+)*\\}[^{}]*)*$"
minLength: 1
$comment: >
The pattern may be improved for stricter validation as this allows some undesirable identifiers. However, if your ACAL implementation is already parsing and validating such values strictly according to the ACAL core specification, then your implementation-specific validation is probably more optimal than using an improved - more complex - pattern. For a more complete regex, refer to the JACAL specification, section 5.1.2.1."
LocalIdentifierType:
type: string
pattern: "^_*[A-Za-z][A-Za-z_0-9]*([-.]_*[A-Za-z_0-9]*)*$"
AttributeSelectorPathType:
type: string
pattern: "^\\S(.*\\S)?$"
Name:
type: string
pattern: "^[_:A-Za-z][-._:A-Za-z0-9:]*$"
EffectType:
type: string
enum:
- Permit
- Deny
DecisionType:
type: string
enum:
- Permit
- Deny
- Indeterminate
- NotApplicable
MediaType:
type: string
pattern: "^[A-Za-z0-9][A-Za-z0-9!#$&\\-\\^_.+]{0,63}/[A-Za-z0-9][A-Za-z0-9!#$&\\-\\^_.+]{0,63}$"
ContentEncodingType:
type: string
pattern: "^[a-z0-9]+(-[a-z0-9]+)*$"
AnyType:
type:
- object
- string
- number
- boolean
PrimitiveValueType:
type:
- string
- number
- boolean
StructuredValueTypeTree:
$dynamicRef: "#StructuredValueTypeExtensions"
StructuredValueTypeExtensionsDisabled:
$dynamicAnchor: "StructuredValueTypeExtensions"
$comment: >
No StructuredValueType extension is enabled by default in the core
schema. Profile or implementation composition schemas may override this
dynamic anchor to add concrete structured-value types.
not: true
TypedValueType:
description: ValueType with an explicit DataType property
allOf:
- type: object
properties:
DataType:
$ref: "#/$defs/IdentifierType"
required:
- DataType
- anyOf:
- properties:
Value:
$comment: >
Primitive value case: number / string values may be mapped to a different ACAL data-type depending on the DataType property (as opposed to 'boolean' ones which have a fixed DataType - ACAL Boolean), e.g. number '1.0' may be mapped to ACAL Integer or Double or other non-standard user-defined number type according to the DataType
type: ["number", "string"]
required:
- Value
- $ref: "#/$defs/StructuredValueTypeTree"
unevaluatedProperties: false
ValueType:
anyOf:
- $ref: "#/$defs/PrimitiveValueType"
- $ref: "#/$defs/StructuredValueTypeTree"
- $ref: "#/$defs/TypedValueType"
$comment: >
Parent-context DataType agreement and other higher-order ValueType
invariants are handled by the companion constraint catalog.
UriArray:
type: array
minItems: 1
items:
$ref: "#/$defs/URIType"
uniqueItems: true
ValueArray:
type: array
items:
$ref: "#/$defs/ValueType"
minItems: 1
ArgumentArray:
type: array
minItems: 1
uniqueItems: false
items:
$ref: "#/$defs/ArgumentTypeTree"
PolicyDefaultsTypeTree:
$dynamicRef: "#PolicyDefaultsTypeExtensions"
PolicyDefaultsTypeExtensionsDisabled:
$dynamicAnchor: "PolicyDefaultsTypeExtensions"
$comment: >
No PolicyDefaultsType extension is enabled by default in the core
schema. Profile or implementation composition schemas may override this
dynamic anchor to add concrete policy-default objects.
not: true
RequestDefaultsTypeTree:
$dynamicRef: "#RequestDefaultsTypeExtensions"
RequestDefaultsTypeExtensionsDisabled:
$dynamicAnchor: "RequestDefaultsTypeExtensions"
$comment: >
No RequestDefaultsType extension is enabled by default in the core
schema. Profile or implementation composition schemas may override this
dynamic anchor to add concrete request-default objects.
not: true
ContentType:
type: object
required:
- Body
properties:
MediaType:
$ref: "#/$defs/MediaType"
Encoding:
$ref: "#/$defs/ContentEncodingType"
Body:
$ref: "#/$defs/AnyType"
additionalProperties: false
AttributeType:
$comment: "Non-final type (see AttributeAssignmentType and RequestAttributeType subtypes)"
type: object
required:
- AttributeId
- Value
properties:
AttributeId:
$ref: "#/$defs/IdentifierType"
Issuer:
$ref: "#/$defs/Name"
DataType:
$ref: "#/$defs/IdentifierType"
default: "urn:oasis:names:tc:acal:1.0:data-type:string"
Value:
$ref: "#/$defs/ValueArray"
RequestAttributeType:
allOf:
- $ref: "#/$defs/AttributeType"
- properties:
IncludeInResult:
$ref: "#/$defs/BooleanType"
default: false
unevaluatedProperties: false
AttributeAssignmentType:
allOf:
- $ref: "#/$defs/AttributeType"
- properties:
Category:
$ref: "#/$defs/IdentifierType"
unevaluatedProperties: false
EntityType:
type: object
properties:
Content:
$ref: "#/$defs/ContentType"
Attribute:
type: array
items:
$ref: "#/$defs/AttributeType"
minItems: 1
anyOf:
- required:
- Content
- required:
- Attribute
additionalProperties: false
VariableReferenceType:
type: object
required:
- VariableId
properties:
VariableId:
$ref: "#/$defs/LocalIdentifierType"
additionalProperties: false
FunctionType:
type: object
required:
- Id
properties:
Id:
$ref: "#/$defs/IdentifierType"
additionalProperties: false
ApplyType:
type: object
required:
- FunctionId
properties:
FunctionId:
$ref: "#/$defs/IdentifierType"
Description:
$ref: "#/$defs/StringType"
Argument:
$ref: "#/$defs/ArgumentArray"
additionalProperties: false
NamedAttributeDesignatorType:
$comment: "Abstract ACAL type"
type: object
required:
- AttributeId
properties:
AttributeId:
$ref: "#/$defs/IdentifierType"
DataType:
$ref: "#/$defs/IdentifierType"
default: "urn:oasis:names:tc:acal:1.0:data-type:string"
Issuer:
$ref: "#/$defs/Name"
MustBePresent:
$ref: "#/$defs/BooleanType"
default: false
AttributeDesignatorType:
allOf:
- $ref: "#/$defs/NamedAttributeDesignatorType"
- properties:
Category:
$ref: "#/$defs/IdentifierType"
required:
- Category
unevaluatedProperties: false
EntityAttributeDesignatorType:
allOf:
- $ref: "#/$defs/NamedAttributeDesignatorType"
- properties:
Expression:
$ref: "#/$defs/ExpressionTypeTree"
required:
- Expression
unevaluatedProperties: false
NamedAttributeDesignatorTypeTree:
$comment: "NamedAttributeDesignatorType's direct subtypes"
anyOf:
- type: object
properties:
AttributeDesignator:
$ref: "#/$defs/AttributeDesignatorType"
required:
- AttributeDesignator
additionalProperties: false
- type: object
properties:
EntityAttributeDesignator:
$ref: "#/$defs/EntityAttributeDesignatorType"
required:
- EntityAttributeDesignator
additionalProperties": false
BaseAttributeSelectorType:
type: object
required:
- Path
properties:
Path:
$ref: "#/$defs/AttributeSelectorPathType"
DataType:
$ref: "#/$defs/IdentifierType"
default: "urn:oasis:names:tc:acal:1.0:data-type:string"
MustBePresent:
$ref: "#/$defs/BooleanType"
default: false
$comment: >
Shared base shape for concrete selector subtypes. The core schema does
not enable any concrete selector subtype by default.
AttributeSelectorType:
allOf:
- $ref: "#/$defs/BaseAttributeSelectorType"
- type: object
required:
- Category
properties:
Category:
$ref: "#/$defs/IdentifierType"
AttributeSelectorTypeTree:
type: object
required:
- AttributeSelector
properties:
AttributeSelector:
$dynamicRef: "#AttributeSelectorTypeExtensions"
additionalProperties: false
AttributeSelectorTypeExtensionsDisabled:
$dynamicAnchor: "AttributeSelectorTypeExtensions"
$comment: >
No AttributeSelectorType extension is enabled by default in the core
schema. Profile or implementation composition schemas may override this
dynamic anchor to add concrete selector types.
not: true
EntityAttributeSelectorType:
allOf:
- $ref: "#/$defs/BaseAttributeSelectorType"
- type: object
required:
- Expression
properties:
Expression:
$ref: "#/$defs/ExpressionTypeTree"
EntityAttributeSelectorTypeTree:
type: object
required:
- EntityAttributeSelector
properties:
EntityAttributeSelector:
$dynamicRef: "#EntityAttributeSelectorTypeExtensions"
additionalProperties: false
EntityAttributeSelectorTypeExtensionsDisabled:
$dynamicAnchor: "EntityAttributeSelectorTypeExtensions"
$comment: >
No EntityAttributeSelectorType extension is enabled by default in the
core schema. Profile or implementation composition schemas may override
this dynamic anchor to add concrete selector types.
not: true
BaseAttributeSelectorTypeTree:
$comment: "BaseAttributeSelectorType's direct subtypes"
anyOf:
- $ref: "#/$defs/AttributeSelectorTypeTree"
- $ref: "#/$defs/EntityAttributeSelectorTypeTree"
SharedVariableReferenceType:
type: object
required:
- Id
properties:
Id:
$ref: "#/$defs/URIType"
Version:
$ref: "#/$defs/VersionMatchType"
Argument:
$ref: "#/$defs/ArgumentArray"
additionalProperties: false
QuantifiedExpressionType:
type: object
required:
- VariableId
- Domain
- Iterant
properties:
VariableId:
$ref: "#/$defs/LocalIdentifierType"
Domain:
$ref: "#/$defs/NonLiteralExpressionTypeTree"
Iterant:
$ref: "#/$defs/ExpressionTypeTree"
additionalProperties: false
QuantifiedExpressionTypeTree:
- $ref: "#/$defs/ForAnyTypeTree"
- $ref: "#/$defs/ForAllTypeTree"
- $ref: "#/$defs/MapTypeTree"
- $ref: "#/$defs/SelectTypeTree"
ExpressionTypeTree:
oneOf:
- $ref: "#/$defs/FunctionTypeTree"
- $ref: "#/$defs/ValueTypeTree"
- $ref: "#/$defs/NonLiteralExpressionTypeTree"
NonLiteralExpressionTypeTree:
oneOf:
- $ref: "#/$defs/ApplyTypeTree"
- $ref: "#/$defs/NamedAttributeDesignatorTypeTree"
- $ref: "#/$defs/BaseAttributeSelectorTypeTree"
- $ref: "#/$defs/VariableReferenceTypeTree"
- $ref: "#/$defs/SharedVariableReferenceTypeTree"
- $ref: "#/$defs/QuantifiedExpressionTypeTree"
BooleanExpressionType:
$ref: "#/$defs/NonLiteralExpressionTypeTree"
ArgumentTypeTree:
oneOf:
- $ref: "#/$defs/ExpressionTypeTree"
- type: object
required:
- NamedArgument
properties:
NamedArgument:
$ref: "#/$defs/NamedArgumentType"
NamedArgumentType:
type: object
required:
- Name
- Expression
properties:
Name:
$ref: "#/$defs/LocalIdentifierType"
Expression:
$ref: "#/$defs/ExpressionTypeTree"
ApplyTypeTree:
type: object
required:
- Apply
properties:
Apply:
$ref: "#/$defs/ApplyType"
additionalProperties: false
AttributeDesignatorTypeTree:
type: object
required:
- AttributeDesignator
properties:
AttributeDesignator:
$ref: "#/$defs/AttributeDesignatorType"
additionalProperties: false
EntityAttributeDesignatorTypeTree:
type: object
required:
- EntityAttributeDesignator
properties:
EntityAttributeDesignator:
$ref: "#/$defs/EntityAttributeDesignatorType"
additionalProperties: false
VariableReferenceTypeTree:
type: object
required:
- VariableReference
properties:
VariableReference:
$ref: "#/$defs/VariableReferenceType"
additionalProperties: false
SharedVariableReferenceTypeTree:
type: object
required:
- SharedVariableReference
properties:
SharedVariableReference:
$ref: "#/$defs/SharedVariableReferenceType"
additionalProperties: false
FunctionTypeTree:
type: object
required:
- Function
properties:
Function:
$ref: "#/$defs/FunctionType"
additionalProperties: false
ValueTypeTree:
type: object
required:
- Value
properties:
Value:
$ref: "#/$defs/ValueType"
additionalProperties: false
ForAnyTypeTree:
type: object
required:
- ForAny
properties:
ForAny:
$ref: "#/$defs/QuantifiedExpressionType"
additionalProperties: false
ForAllTypeTree:
type: object
required:
- ForAll
properties:
ForAll:
$ref: "#/$defs/QuantifiedExpressionType"
additionalProperties: false
SelectTypeTree:
type: object
required:
- Select
properties:
Select:
$ref: "#/$defs/QuantifiedExpressionType"
additionalProperties: false
MapTypeTree:
type: object
required:
- Map
properties:
Map:
$ref: "#/$defs/QuantifiedExpressionType"
additionalProperties: false
VariableDefinitionType:
type: object
required:
- VariableId
- Expression
properties:
VariableId:
$ref: "#/$defs/LocalIdentifierType"
Expression:
$ref: "#/$defs/ExpressionTypeTree"
additionalProperties: false
ParameterType:
type: object
required:
- Name
properties:
Name:
$ref: "#/$defs/LocalIdentifierType"
DataType:
$ref: "#/$defs/IdentifierType"
IsBag:
$ref: "#/$defs/BooleanType"
default: false
Description:
$ref: "#/$defs/StringType"
Expression:
$ref: "#/$defs/ExpressionTypeTree"
additionalProperties: false
PolicyReferenceType:
$comment: "Subtype of PatternMatchIdReferenceType"
allOf:
- $ref: "#/$defs/PatternMatchIdReferenceType"
- properties:
Argument:
$ref: "#/$defs/ArgumentArray"
unevaluatedProperties: false
IdReferenceType:
$comment: "ACAL abstract type"
type: object
properties:
Id:
$ref: "#/$defs/URIType"
required:
- Id
ExactMatchIdReferenceType:
$comment: "Final subtype of IdReferenceType"
allOf:
- $ref: "#/$defs/IdReferenceType"
- properties:
Version:
$ref: "#/$defs/VersionType"
required:
- Version
unevaluatedProperties: false
PatternMatchIdReferenceType:
$comment: "Non-final subtype of IdReferenceType"
allOf:
- $ref: "#/$defs/IdReferenceType"
- properties:
Version:
$ref: "#/$defs/VersionMatchType"
RuleType:
type: object
required:
- Id
- Effect
properties:
Id:
$ref: "#/$defs/LocalIdentifierType"
Effect:
$ref: "#/$defs/EffectType"
Description:
$ref: "#/$defs/StringType"
VariableDefinition:
type: array
minItems: 1
items:
$ref: "#/$defs/VariableDefinitionType"
Condition:
$ref: "#/$defs/BooleanExpressionType"
NoticeExpression:
type: array
minItems: 1
items:
$ref: "#/$defs/NoticeExpressionType"
additionalProperties: false
PolicyType:
type: object
required:
- PolicyId
- Version
- CombiningAlgId
properties:
PolicyId:
$ref: "#/$defs/URIType"
Version:
$ref: "#/$defs/VersionType"
CombiningAlgId:
$ref: "#/$defs/IdentifierType"
Description:
$ref: "#/$defs/StringType"
ShortIdSetReference:
$ref: "#/$defs/UriArray"
MaxDelegationDepth:
$ref: "#/$defs/NonNegativeIntegerType"
PolicyIssuer:
$ref: "#/$defs/EntityType"
PolicyDefaults:
type: array
minItems: 1
items:
$ref: "#/$defs/PolicyDefaultsTypeTree"
Parameter:
type: array
minItems: 1
items:
$ref: "#/$defs/ParameterType"
VariableDefinition:
type: array
minItems: 1
items:
$ref: "#/$defs/VariableDefinitionType"
Target:
$ref: "#/$defs/BooleanExpressionType"
CombinerInput:
type: array
minItems: 1
items:
$ref: "#/$defs/CombinerInputTypeTree"
NoticeExpression:
type: array
minItems: 1
items:
$ref: "#/$defs/NoticeExpressionType"
additionalProperties: false
RuleTypeTree:
type: object
required:
- Rule
properties:
Rule:
$ref: "#/$defs/RuleType"
additionalProperties: false
PolicyTypeTree:
type: object
required:
- Policy
properties:
Policy:
$ref: "#/$defs/PolicyType"
additionalProperties: false
PolicyReferenceTypeTree:
type: object
required:
- PolicyReference
properties:
PolicyReference:
$ref: "#/$defs/PolicyReferenceType"
additionalProperties: false
CombinerInputTypeTree:
oneOf:
- $ref: "#/$defs/RuleTypeTree"
- $ref: "#/$defs/PolicyTypeTree"
- $ref: "#/$defs/PolicyReferenceTypeTree"
SharedVariableDefinitionType:
type: object
required:
- Id
- Version
- Expression
properties:
Id:
$ref: "#/$defs/URIType"
Version:
$ref: "#/$defs/VersionType"
Description:
$ref: "#/$defs/StringType"
ShortIdSetReference:
$ref: "#/$defs/UriArray"
Parameter:
type: array
minItems: 1
items:
$ref: "#/$defs/ParameterType"
Expression:
$ref: "#/$defs/ExpressionTypeTree"
additionalProperties: false
BundleType:
type: object
properties:
ShortIdSet:
type: array
minItems: 1
items:
$ref: "#/$defs/ShortIdSetType"
SharedVariableDefinition:
type: array
minItems: 1
items:
$ref: "#/$defs/SharedVariableDefinitionType"
Policy:
type: array
minItems: 1
items:
$ref: "#/$defs/PolicyType"
PolicyReference:
$ref: "#/$defs/PolicyReferenceType"
additionalProperties: false
RequestReferenceType:
type: object
required:
- RequestEntityReference
properties:
RequestEntityReference:
type: array
items:
$ref: "#/$defs/LocalIdentifierType"
minItems: 1
additionalProperties: false
MultiRequestsType:
type: object
required:
- RequestReference
properties:
RequestReference:
type: array
items:
$ref: "#/$defs/RequestReferenceType"
minItems: 1
additionalProperties: false
RequestEntityType:
type: object
required:
- Category
properties:
Category:
$ref: "#/$defs/IdentifierType"
Id:
$ref: "#/$defs/LocalIdentifierType"
Content:
$ref: "#/$defs/ContentType"
RequestAttribute:
type: array
minItems: 1
items:
$ref: "#/$defs/RequestAttributeType"
additionalProperties: false
RequestType:
type: object
required:
- RequestEntity
properties:
ReturnPolicyIdList:
$ref: "#/$defs/BooleanType"
default: false
CombinedDecision:
$ref: "#/$defs/BooleanType"
default: false
ShortIdSetReference:
$ref: "#/$defs/UriArray"
RequestDefaults:
type: array
minItems: 1
items:
$ref: "#/$defs/RequestDefaultsTypeTree"
RequestEntity:
type: array
items:
$ref: "#/$defs/RequestEntityType"
minItems: 1
MultiRequests:
$ref: "#/$defs/MultiRequestsType"
additionalProperties: false
ResultEntityType:
type: object
required:
- Category
- Attribute
properties:
Category:
$ref: "#/$defs/IdentifierType"
Id:
$ref: "#/$defs/LocalIdentifierType"
Attribute:
type: array
items:
$ref: "#/$defs/AttributeType"
minItems: 1
additionalProperties: false
StatusCodeType:
type: object
required:
- Value
properties:
Value:
$ref: "#/$defs/IdentifierType"
StatusCode:
$ref: "#/$defs/StatusCodeType"
additionalProperties: false
MissingAttributeDetailType:
type: object
required:
- AttributeId
- DataType
properties:
Category:
$ref: "#/$defs/IdentifierType"
AttributeId:
$ref: "#/$defs/IdentifierType"
Issuer:
$ref: "#/$defs/Name"
DataType:
$ref: "#/$defs/IdentifierType"
default: "urn:oasis:names:tc:acal:1.0:data-type:string"
Value:
$ref: "#/$defs/ValueArray"
additionalProperties: false
StatusDetailType:
allOf:
- $ref: "#/$defs/StatusDetailTypeCore"
- $dynamicRef: "#StatusDetailTypeExtensions"
unevaluatedProperties: false
$comment: >
Conditional StatusDetail presence and status-code-specific detail rules
are handled by the companion constraint catalog.
StatusDetailTypeCore:
type: object
properties:
MissingAttributeDetail:
type: array
items:
$ref: "#/$defs/MissingAttributeDetailType"
minItems: 1
minProperties: 1
StatusDetailTypeExtensionsDisabled:
$dynamicAnchor: "StatusDetailTypeExtensions"
$comment: >
No profile-specific StatusDetail entries are enabled by default in the
core schema. Profile or implementation composition schemas may override
this dynamic anchor to add supported detail keys.
not: true
StatusType:
type: object
required:
- StatusCode
properties:
StatusCode:
$ref: "#/$defs/StatusCodeType"
StatusMessage:
$ref: "#/$defs/StringType"
StatusDetail:
$ref: "#/$defs/StatusDetailType"
additionalProperties: false
NoticeType:
type: object
required:
- Id
properties:
Id:
$ref: "#/$defs/IdentifierType"
IsObligation:
$ref: "#/$defs/BooleanType"
default: false
AttributeAssignment:
type: array
minItems: 1
items:
$ref: "#/$defs/AttributeAssignmentType"
additionalProperties: false
AttributeAssignmentExpressionType:
type: object
required:
- AttributeId
- Expression
properties:
AttributeId:
$ref: "#/$defs/IdentifierType"
Category:
$ref: "#/$defs/IdentifierType"
Issuer:
$ref: "#/$defs/Name"
Expression:
$ref: "#/$defs/ExpressionTypeTree"
additionalProperties: false