-
Notifications
You must be signed in to change notification settings - Fork 4
/
rdl.json
800 lines (800 loc) · 30.1 KB
/
rdl.json
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
{
"name": "rdl",
"version": 3,
"comment": "This defines the schema for a schema, the output of the RDL parser. This can be used to represent schemas in JSON, Protobuf, Avro, etc, from a single definition.",
"types": [
{
"StringTypeDef": {
"type": "String",
"name": "Identifier",
"comment": "All names need to be of this restricted string type",
"pattern": "[a-zA-Z_]+[a-zA-Z_0-9]*"
}
},
{
"StringTypeDef": {
"type": "String",
"name": "NamespacedIdentifier",
"comment": "A Namespace is a dotted compound name, using reverse domain name order (i.e. \"com.yahoo.auth\")",
"pattern": "([a-zA-Z_]+[a-zA-Z_0-9]*)(\\.[a-zA-Z_]+[a-zA-Z_0-9])*"
}
},
{
"AliasTypeDef": {
"type": "Identifier",
"name": "TypeName",
"comment": "The identifier for an already-defined type"
}
},
{
"AliasTypeDef": {
"type": "NamespacedIdentifier",
"name": "TypeRef",
"comment": "A type reference can be a simple name, or also a namespaced name."
}
},
{
"EnumTypeDef": {
"type": "Enum",
"name": "BaseType",
"elements": [
{
"symbol": "Bool"
},
{
"symbol": "Int8"
},
{
"symbol": "Int16"
},
{
"symbol": "Int32"
},
{
"symbol": "Int64"
},
{
"symbol": "Float32"
},
{
"symbol": "Float64"
},
{
"symbol": "Bytes"
},
{
"symbol": "String"
},
{
"symbol": "Timestamp"
},
{
"symbol": "Symbol"
},
{
"symbol": "UUID"
},
{
"symbol": "Array"
},
{
"symbol": "Map"
},
{
"symbol": "Struct"
},
{
"symbol": "Enum"
},
{
"symbol": "Union"
},
{
"symbol": "Any"
}
]
}
},
{
"StringTypeDef": {
"type": "String",
"name": "ExtendedAnnotation",
"comment": "ExtendedAnnotation - parsed and preserved, but has no defined meaning in RDL. Such annotations must begin with \"x_\", and may have an associated string literal value (the value will be \"\" if the annotation is just a flag).",
"pattern": "x_[a-zA-Z_0-9]*"
}
},
{
"StructTypeDef": {
"type": "Struct",
"name": "TypeDef",
"comment": "TypeDef is the basic type definition.",
"fields": [
{
"name": "type",
"type": "TypeRef",
"comment": "The type this type is derived from. For base types, it is the same as the name"
},
{
"name": "name",
"type": "TypeName",
"comment": "The name of the type"
},
{
"name": "comment",
"type": "String",
"optional": true,
"comment": "The comment for the type"
},
{
"name": "annotations",
"type": "Map",
"optional": true,
"comment": "additional annotations starting with \"x_\"",
"items": "String",
"keys": "ExtendedAnnotation"
}
]
}
},
{
"StructTypeDef": {
"type": "TypeDef",
"name": "AliasTypeDef",
"comment": "AliasTypeDef is used for type definitions that add no additional attributes, and thus just create an alias",
"fields": []
}
},
{
"StructTypeDef": {
"type": "TypeDef",
"name": "BytesTypeDef",
"comment": "Bytes allow the restriction by fixed size, or min/max size.",
"fields": [
{
"name": "size",
"type": "Int32",
"optional": true,
"comment": "Fixed size"
},
{
"name": "minSize",
"type": "Int32",
"optional": true,
"comment": "Min size"
},
{
"name": "maxSize",
"type": "Int32",
"optional": true,
"comment": "Max size"
}
]
}
},
{
"StructTypeDef": {
"type": "TypeDef",
"name": "StringTypeDef",
"comment": "Strings allow the restriction by regular expression pattern or by an explicit set of values. An optional maximum size may be asserted",
"fields": [
{
"name": "pattern",
"type": "String",
"optional": true,
"comment": "A regular expression that must be matched. Mutually exclusive with values"
},
{
"name": "values",
"type": "Array",
"optional": true,
"comment": "A set of allowable values",
"items": "String"
},
{
"name": "minSize",
"type": "Int32",
"optional": true,
"comment": "Min size"
},
{
"name": "maxSize",
"type": "Int32",
"optional": true,
"comment": "Max size"
}
]
}
},
{
"UnionTypeDef": {
"type": "Union",
"name": "Number",
"comment": "A numeric is any of the primitive numeric types",
"variants": [
"Int8",
"Int16",
"Int32",
"Int64",
"Float32",
"Float64"
]
}
},
{
"StructTypeDef": {
"type": "TypeDef",
"name": "NumberTypeDef",
"comment": "A number type definition allows the restriction of numeric values.",
"fields": [
{
"name": "min",
"type": "Number",
"optional": true,
"comment": "Min value"
},
{
"name": "max",
"type": "Number",
"optional": true,
"comment": "Max value"
}
]
}
},
{
"StructTypeDef": {
"type": "TypeDef",
"name": "ArrayTypeDef",
"comment": "Array types can be restricted by item type and size",
"fields": [
{
"name": "items",
"type": "TypeRef",
"default": "Any",
"comment": "The type of the items, default to any type"
},
{
"name": "size",
"type": "Int32",
"optional": true,
"comment": "If present, indicate the fixed size."
},
{
"name": "minSize",
"type": "Int32",
"optional": true,
"comment": "If present, indicate the min size"
},
{
"name": "maxSize",
"type": "Int32",
"optional": true,
"comment": "If present, indicate the max size"
}
]
}
},
{
"StructTypeDef": {
"type": "TypeDef",
"name": "MapTypeDef",
"comment": "Map types can be restricted by key type, item type and size",
"fields": [
{
"name": "keys",
"type": "TypeRef",
"default": "String",
"comment": "The type of the keys, default to String."
},
{
"name": "items",
"type": "TypeRef",
"default": "Any",
"comment": "The type of the items, default to Any type"
},
{
"name": "size",
"type": "Int32",
"optional": true,
"comment": "If present, indicates the fixed size."
},
{
"name": "minSize",
"type": "Int32",
"optional": true,
"comment": "If present, indicate the min size"
},
{
"name": "maxSize",
"type": "Int32",
"optional": true,
"comment": "If present, indicate the max size"
}
]
}
},
{
"StructTypeDef": {
"type": "Struct",
"name": "StructFieldDef",
"comment": "Each field in a struct_field_spec is defined by this type",
"fields": [
{
"name": "name",
"type": "Identifier",
"comment": "The name of the field"
},
{
"name": "type",
"type": "TypeRef",
"comment": "The type of the field"
},
{
"name": "optional",
"type": "Bool",
"default": false,
"comment": "The field may be omitted even if specified"
},
{
"name": "default",
"type": "Any",
"optional": true,
"comment": "If field is absent, what default value should be assumed."
},
{
"name": "comment",
"type": "String",
"optional": true,
"comment": "The comment for the field"
},
{
"name": "items",
"type": "TypeRef",
"optional": true,
"comment": "For map or array fields, the type of the items"
},
{
"name": "keys",
"type": "TypeRef",
"optional": true,
"comment": "For map type fields, the type of the keys"
},
{
"name": "annotations",
"type": "Map",
"optional": true,
"comment": "additional annotations starting with \"x_\"",
"items": "String",
"keys": "ExtendedAnnotation"
}
]
}
},
{
"StructTypeDef": {
"type": "TypeDef",
"name": "StructTypeDef",
"comment": "A struct can restrict specific named fields to specific types. By default, any field not specified is allowed, and can be of any type. Specifying closed means only those fields explicitly",
"fields": [
{
"name": "fields",
"type": "Array",
"comment": "The fields in this struct. By default, open Structs can have any fields in addition to these",
"items": "StructFieldDef"
},
{
"name": "closed",
"type": "Bool",
"default": false,
"comment": "indicates that only the specified fields are acceptable. Default is open (any fields)"
}
]
}
},
{
"StructTypeDef": {
"type": "Struct",
"name": "EnumElementDef",
"comment": "EnumElementDef defines one of the elements of an Enum",
"fields": [
{
"name": "symbol",
"type": "Identifier",
"comment": "The identifier representing the value"
},
{
"name": "comment",
"type": "String",
"optional": true,
"comment": "the comment for the element"
}
]
}
},
{
"StructTypeDef": {
"type": "TypeDef",
"name": "EnumTypeDef",
"comment": "Define an enumerated type. Each value of the type is represented by a symbolic identifier.",
"fields": [
{
"name": "elements",
"type": "Array",
"comment": "The enumeration of the possible elements",
"items": "EnumElementDef"
}
]
}
},
{
"StructTypeDef": {
"type": "TypeDef",
"name": "UnionTypeDef",
"comment": "Define a type as one of any other specified type.",
"fields": [
{
"name": "variants",
"type": "Array",
"comment": "The type names of constituent types. Union types get expanded, this is a flat list",
"items": "TypeRef"
}
]
}
},
{
"UnionTypeDef": {
"type": "Union",
"name": "Type",
"comment": "A Type can be specified by any of the above specialized Types, determined by the value of the the 'type' field",
"variants": [
"BaseType",
"StructTypeDef",
"MapTypeDef",
"ArrayTypeDef",
"EnumTypeDef",
"UnionTypeDef",
"StringTypeDef",
"BytesTypeDef",
"NumberTypeDef",
"AliasTypeDef"
]
}
},
{
"StructTypeDef": {
"type": "Struct",
"name": "ResourceInput",
"comment": "ResourceOutput defines input characteristics of a Resource",
"fields": [
{
"name": "name",
"type": "Identifier",
"comment": "the formal name of the input"
},
{
"name": "type",
"type": "TypeRef",
"comment": "The type of the input"
},
{
"name": "comment",
"type": "String",
"optional": true,
"comment": "The optional comment"
},
{
"name": "pathParam",
"type": "Bool",
"default": false,
"comment": "true of this input is a path parameter"
},
{
"name": "queryParam",
"type": "String",
"optional": true,
"comment": "if present, the name of the query param name"
},
{
"name": "header",
"type": "String",
"optional": true,
"comment": "If present, the name of the header the input is associated with"
},
{
"name": "pattern",
"type": "String",
"optional": true,
"comment": "If present, the pattern associated with the pathParam (i.e. wildcard path matches)"
},
{
"name": "default",
"type": "Any",
"optional": true,
"comment": "If present, the default value for optional params"
},
{
"name": "optional",
"type": "Bool",
"default": false,
"comment": "If present, indicates that the input is optional"
},
{
"name": "flag",
"type": "Bool",
"default": false,
"comment": "If present, indicates the queryparam is of flag style (no value)"
},
{
"name": "context",
"type": "String",
"optional": true,
"comment": "If present, indicates the parameter comes form the implementation context"
},
{
"name": "annotations",
"type": "Map",
"optional": true,
"comment": "additional annotations starting with \"x_\"",
"items": "String",
"keys": "ExtendedAnnotation"
}
]
}
},
{
"StructTypeDef": {
"type": "Struct",
"name": "ResourceOutput",
"comment": "ResourceOutput defines output characteristics of a Resource",
"fields": [
{
"name": "name",
"type": "Identifier",
"comment": "the formal name of the output"
},
{
"name": "type",
"type": "TypeRef",
"comment": "The type of the output"
},
{
"name": "header",
"type": "String",
"comment": "the name of the header associated with this output"
},
{
"name": "comment",
"type": "String",
"optional": true,
"comment": "The optional comment for the output"
},
{
"name": "optional",
"type": "Bool",
"default": false,
"comment": "If present, indicates that the output is optional (the server decides)"
},
{
"name": "annotations",
"type": "Map",
"optional": true,
"comment": "additional annotations starting with \"x_\"",
"items": "String",
"keys": "ExtendedAnnotation"
}
]
}
},
{
"StructTypeDef": {
"type": "Struct",
"name": "ResourceAuth",
"comment": "ResourceAuth defines authentication and authorization attributes of a resource. Presence of action, resource, or domain implies authentication; the authentication flag alone is required only when no authorization is done.",
"fields": [
{
"name": "authenticate",
"type": "Bool",
"default": false,
"comment": "if present and true, then the requester must be authenticated"
},
{
"name": "action",
"type": "String",
"optional": true,
"comment": "the action to authorize access to. This forces authentication"
},
{
"name": "resource",
"type": "String",
"optional": true,
"comment": "the resource identity to authorize access to"
},
{
"name": "domain",
"type": "String",
"optional": true,
"comment": "if present, the alternate domain to check access to. This is rare."
}
]
}
},
{
"StructTypeDef": {
"type": "Struct",
"name": "ExceptionDef",
"comment": "ExceptionDef describes the exception a symbolic response code maps to.",
"fields": [
{
"name": "type",
"type": "String",
"comment": "The type of the exception"
},
{
"name": "comment",
"type": "String",
"optional": true,
"comment": "the optional comment for the exception"
}
]
}
},
{
"StructTypeDef": {
"type": "Struct",
"name": "Resource",
"comment": "A Resource of a REST service",
"fields": [
{
"name": "type",
"type": "TypeRef",
"comment": "The type of the resource"
},
{
"name": "method",
"type": "String",
"comment": "The method for the action (typically GET, POST, etc for HTTP access)"
},
{
"name": "path",
"type": "String",
"comment": "The resource path template"
},
{
"name": "comment",
"type": "String",
"optional": true,
"comment": "The optional comment"
},
{
"name": "inputs",
"type": "Array",
"optional": true,
"comment": "An Array named inputs",
"items": "ResourceInput"
},
{
"name": "outputs",
"type": "Array",
"optional": true,
"comment": "An Array of named outputs",
"items": "ResourceOutput"
},
{
"name": "auth",
"type": "ResourceAuth",
"optional": true,
"comment": "The optional authentication or authorization directive"
},
{
"name": "expected",
"type": "String",
"default": "OK",
"comment": "The expected symbolic response code"
},
{
"name": "alternatives",
"type": "Array",
"optional": true,
"comment": "The set of alternative but non-error response codes",
"items": "String"
},
{
"name": "exceptions",
"type": "Map",
"optional": true,
"comment": "A map of symbolic response code to Exception definitions",
"items": "ExceptionDef",
"keys": "String"
},
{
"name": "async",
"type": "Bool",
"optional": true,
"comment": "A hint to server implementations that this resource would be better implemented with async I/O"
},
{
"name": "annotations",
"type": "Map",
"optional": true,
"comment": "additional annotations starting with \"x_\"",
"items": "String",
"keys": "ExtendedAnnotation"
},
{
"name": "consumes",
"type": "Array",
"optional": true,
"comment": "Optional hint for resource acceptable input types",
"items": "String"
},
{
"name": "produces",
"type": "Array",
"optional": true,
"comment": "Optional hint for resource output content types",
"items": "String"
},
{
"name": "name",
"type": "Identifier",
"optional": true,
"comment": "The optional name of the resource"
}
]
}
},
{
"StructTypeDef": {
"type": "Struct",
"name": "Schema",
"comment": "A Schema is a container for types and resources. It is self-contained (no external references). and is the output of the RDL parser.",
"fields": [
{
"name": "namespace",
"type": "NamespacedIdentifier",
"optional": true,
"comment": "The namespace for the schema"
},
{
"name": "name",
"type": "Identifier",
"optional": true,
"comment": "The name of the schema"
},
{
"name": "version",
"type": "Int32",
"optional": true,
"comment": "The version of the schema"
},
{
"name": "comment",
"type": "String",
"optional": true,
"comment": "The comment for the entire schema"
},
{
"name": "types",
"type": "Array",
"optional": true,
"comment": "The types this schema defines.",
"items": "Type"
},
{
"name": "resources",
"type": "Array",
"optional": true,
"comment": "The resources for a service this schema defines",
"items": "Resource"
},
{
"name": "base",
"type": "String",
"optional": true,
"comment": "the base path for resources in the schema."
}
]
}
}
]
}