retold-data-service 2.0.5 → 2.0.7

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,1603 @@
1
+ {
2
+ "Tables": {
3
+ "Book": {
4
+ "TableName": "Book",
5
+ "Domain": "Default",
6
+ "Columns": [
7
+ {
8
+ "Column": "IDBook",
9
+ "DataType": "ID"
10
+ },
11
+ {
12
+ "Column": "GUIDBook",
13
+ "DataType": "GUID",
14
+ "Size": "36"
15
+ },
16
+ {
17
+ "Column": "CreateDate",
18
+ "DataType": "DateTime"
19
+ },
20
+ {
21
+ "Column": "CreatingIDUser",
22
+ "DataType": "Numeric",
23
+ "Size": "int"
24
+ },
25
+ {
26
+ "Column": "UpdateDate",
27
+ "DataType": "DateTime"
28
+ },
29
+ {
30
+ "Column": "UpdatingIDUser",
31
+ "DataType": "Numeric",
32
+ "Size": "int"
33
+ },
34
+ {
35
+ "Column": "Deleted",
36
+ "DataType": "Boolean"
37
+ },
38
+ {
39
+ "Column": "DeleteDate",
40
+ "DataType": "DateTime"
41
+ },
42
+ {
43
+ "Column": "DeletingIDUser",
44
+ "DataType": "Numeric",
45
+ "Size": "int"
46
+ },
47
+ {
48
+ "Column": "Title",
49
+ "DataType": "String",
50
+ "Size": "200"
51
+ },
52
+ {
53
+ "Column": "Type",
54
+ "DataType": "String",
55
+ "Size": "32"
56
+ },
57
+ {
58
+ "Column": "Genre",
59
+ "DataType": "String",
60
+ "Size": "128"
61
+ },
62
+ {
63
+ "Column": "ISBN",
64
+ "DataType": "String",
65
+ "Size": "64"
66
+ },
67
+ {
68
+ "Column": "Language",
69
+ "DataType": "String",
70
+ "Size": "12"
71
+ },
72
+ {
73
+ "Column": "ImageURL",
74
+ "DataType": "String",
75
+ "Size": "254"
76
+ },
77
+ {
78
+ "Column": "PublicationYear",
79
+ "DataType": "Numeric",
80
+ "Size": "int"
81
+ }
82
+ ],
83
+ "Description": "",
84
+ "MeadowSchema": {
85
+ "Scope": "Book",
86
+ "DefaultIdentifier": "IDBook",
87
+ "Domain": "Default",
88
+ "Schema": [
89
+ {
90
+ "Column": "IDBook",
91
+ "Type": "AutoIdentity",
92
+ "Size": "Default"
93
+ },
94
+ {
95
+ "Column": "GUIDBook",
96
+ "Type": "AutoGUID",
97
+ "Size": "36"
98
+ },
99
+ {
100
+ "Column": "CreateDate",
101
+ "Type": "CreateDate",
102
+ "Size": "Default"
103
+ },
104
+ {
105
+ "Column": "CreatingIDUser",
106
+ "Type": "CreateIDUser",
107
+ "Size": "int"
108
+ },
109
+ {
110
+ "Column": "UpdateDate",
111
+ "Type": "UpdateDate",
112
+ "Size": "Default"
113
+ },
114
+ {
115
+ "Column": "UpdatingIDUser",
116
+ "Type": "UpdateIDUser",
117
+ "Size": "int"
118
+ },
119
+ {
120
+ "Column": "Deleted",
121
+ "Type": "Deleted",
122
+ "Size": "Default"
123
+ },
124
+ {
125
+ "Column": "DeleteDate",
126
+ "Type": "DeleteDate",
127
+ "Size": "Default"
128
+ },
129
+ {
130
+ "Column": "DeletingIDUser",
131
+ "Type": "DeleteIDUser",
132
+ "Size": "int"
133
+ },
134
+ {
135
+ "Column": "Title",
136
+ "Type": "String",
137
+ "Size": "200"
138
+ },
139
+ {
140
+ "Column": "Type",
141
+ "Type": "String",
142
+ "Size": "32"
143
+ },
144
+ {
145
+ "Column": "Genre",
146
+ "Type": "String",
147
+ "Size": "128"
148
+ },
149
+ {
150
+ "Column": "ISBN",
151
+ "Type": "String",
152
+ "Size": "64"
153
+ },
154
+ {
155
+ "Column": "Language",
156
+ "Type": "String",
157
+ "Size": "12"
158
+ },
159
+ {
160
+ "Column": "ImageURL",
161
+ "Type": "String",
162
+ "Size": "254"
163
+ },
164
+ {
165
+ "Column": "PublicationYear",
166
+ "Type": "Integer",
167
+ "Size": "int"
168
+ }
169
+ ],
170
+ "DefaultObject": {
171
+ "IDBook": 0,
172
+ "GUIDBook": "0x0000000000000000",
173
+ "CreateDate": null,
174
+ "CreatingIDUser": 0,
175
+ "UpdateDate": null,
176
+ "UpdatingIDUser": 0,
177
+ "Deleted": false,
178
+ "DeleteDate": null,
179
+ "DeletingIDUser": 0,
180
+ "Title": "",
181
+ "Type": "",
182
+ "Genre": "",
183
+ "ISBN": "",
184
+ "Language": "",
185
+ "ImageURL": "",
186
+ "PublicationYear": 0
187
+ },
188
+ "JsonSchema": {
189
+ "title": "Book",
190
+ "type": "object",
191
+ "properties": {
192
+ "IDBook": {
193
+ "type": "integer",
194
+ "size": "Default"
195
+ },
196
+ "GUIDBook": {
197
+ "type": "string",
198
+ "size": "36"
199
+ },
200
+ "CreateDate": {
201
+ "type": "string",
202
+ "size": "Default"
203
+ },
204
+ "CreatingIDUser": {
205
+ "type": "integer",
206
+ "size": "int"
207
+ },
208
+ "UpdateDate": {
209
+ "type": "string",
210
+ "size": "Default"
211
+ },
212
+ "UpdatingIDUser": {
213
+ "type": "integer",
214
+ "size": "int"
215
+ },
216
+ "Deleted": {
217
+ "type": "boolean",
218
+ "size": "Default"
219
+ },
220
+ "DeleteDate": {
221
+ "type": "string",
222
+ "size": "Default"
223
+ },
224
+ "DeletingIDUser": {
225
+ "type": "integer",
226
+ "size": "int"
227
+ },
228
+ "Title": {
229
+ "type": "string",
230
+ "size": "200"
231
+ },
232
+ "Type": {
233
+ "type": "string",
234
+ "size": "32"
235
+ },
236
+ "Genre": {
237
+ "type": "string",
238
+ "size": "128"
239
+ },
240
+ "ISBN": {
241
+ "type": "string",
242
+ "size": "64"
243
+ },
244
+ "Language": {
245
+ "type": "string",
246
+ "size": "12"
247
+ },
248
+ "ImageURL": {
249
+ "type": "string",
250
+ "size": "254"
251
+ },
252
+ "PublicationYear": {
253
+ "type": "integer",
254
+ "size": "int"
255
+ }
256
+ },
257
+ "required": [
258
+ "IDBook"
259
+ ]
260
+ },
261
+ "Authorization": {}
262
+ }
263
+ },
264
+ "BookAuthorJoin": {
265
+ "TableName": "BookAuthorJoin",
266
+ "Domain": "Default",
267
+ "Columns": [
268
+ {
269
+ "Column": "IDBookAuthorJoin",
270
+ "DataType": "ID"
271
+ },
272
+ {
273
+ "Column": "GUIDBookAuthorJoin",
274
+ "DataType": "GUID",
275
+ "Size": "36"
276
+ },
277
+ {
278
+ "Column": "IDBook",
279
+ "DataType": "Numeric",
280
+ "Size": "int",
281
+ "Join": "IDBook"
282
+ },
283
+ {
284
+ "Column": "IDAuthor",
285
+ "DataType": "Numeric",
286
+ "Size": "int",
287
+ "Join": "IDAuthor"
288
+ }
289
+ ],
290
+ "Description": "",
291
+ "MeadowSchema": {
292
+ "Scope": "BookAuthorJoin",
293
+ "DefaultIdentifier": "IDBookAuthorJoin",
294
+ "Domain": "Default",
295
+ "Schema": [
296
+ {
297
+ "Column": "IDBookAuthorJoin",
298
+ "Type": "AutoIdentity",
299
+ "Size": "Default"
300
+ },
301
+ {
302
+ "Column": "GUIDBookAuthorJoin",
303
+ "Type": "AutoGUID",
304
+ "Size": "36"
305
+ },
306
+ {
307
+ "Column": "IDBook",
308
+ "Type": "Integer",
309
+ "Size": "int"
310
+ },
311
+ {
312
+ "Column": "IDAuthor",
313
+ "Type": "Integer",
314
+ "Size": "int"
315
+ }
316
+ ],
317
+ "DefaultObject": {
318
+ "IDBookAuthorJoin": 0,
319
+ "GUIDBookAuthorJoin": "0x0000000000000000",
320
+ "IDBook": 0,
321
+ "IDAuthor": 0
322
+ },
323
+ "JsonSchema": {
324
+ "title": "BookAuthorJoin",
325
+ "type": "object",
326
+ "properties": {
327
+ "IDBookAuthorJoin": {
328
+ "type": "integer",
329
+ "size": "Default"
330
+ },
331
+ "GUIDBookAuthorJoin": {
332
+ "type": "string",
333
+ "size": "36"
334
+ },
335
+ "IDBook": {
336
+ "type": "integer",
337
+ "size": "int"
338
+ },
339
+ "IDAuthor": {
340
+ "type": "integer",
341
+ "size": "int"
342
+ }
343
+ },
344
+ "required": [
345
+ "IDBookAuthorJoin"
346
+ ]
347
+ },
348
+ "Authorization": {}
349
+ }
350
+ },
351
+ "Author": {
352
+ "TableName": "Author",
353
+ "Domain": "Default",
354
+ "Columns": [
355
+ {
356
+ "Column": "IDAuthor",
357
+ "DataType": "ID"
358
+ },
359
+ {
360
+ "Column": "GUIDAuthor",
361
+ "DataType": "GUID",
362
+ "Size": "36"
363
+ },
364
+ {
365
+ "Column": "CreateDate",
366
+ "DataType": "DateTime"
367
+ },
368
+ {
369
+ "Column": "CreatingIDUser",
370
+ "DataType": "Numeric",
371
+ "Size": "int"
372
+ },
373
+ {
374
+ "Column": "UpdateDate",
375
+ "DataType": "DateTime"
376
+ },
377
+ {
378
+ "Column": "UpdatingIDUser",
379
+ "DataType": "Numeric",
380
+ "Size": "int"
381
+ },
382
+ {
383
+ "Column": "Deleted",
384
+ "DataType": "Boolean"
385
+ },
386
+ {
387
+ "Column": "DeleteDate",
388
+ "DataType": "DateTime"
389
+ },
390
+ {
391
+ "Column": "DeletingIDUser",
392
+ "DataType": "Numeric",
393
+ "Size": "int"
394
+ },
395
+ {
396
+ "Column": "Name",
397
+ "DataType": "String",
398
+ "Size": "200"
399
+ }
400
+ ],
401
+ "Description": "",
402
+ "MeadowSchema": {
403
+ "Scope": "Author",
404
+ "DefaultIdentifier": "IDAuthor",
405
+ "Domain": "Default",
406
+ "Schema": [
407
+ {
408
+ "Column": "IDAuthor",
409
+ "Type": "AutoIdentity",
410
+ "Size": "Default"
411
+ },
412
+ {
413
+ "Column": "GUIDAuthor",
414
+ "Type": "AutoGUID",
415
+ "Size": "36"
416
+ },
417
+ {
418
+ "Column": "CreateDate",
419
+ "Type": "CreateDate",
420
+ "Size": "Default"
421
+ },
422
+ {
423
+ "Column": "CreatingIDUser",
424
+ "Type": "CreateIDUser",
425
+ "Size": "int"
426
+ },
427
+ {
428
+ "Column": "UpdateDate",
429
+ "Type": "UpdateDate",
430
+ "Size": "Default"
431
+ },
432
+ {
433
+ "Column": "UpdatingIDUser",
434
+ "Type": "UpdateIDUser",
435
+ "Size": "int"
436
+ },
437
+ {
438
+ "Column": "Deleted",
439
+ "Type": "Deleted",
440
+ "Size": "Default"
441
+ },
442
+ {
443
+ "Column": "DeleteDate",
444
+ "Type": "DeleteDate",
445
+ "Size": "Default"
446
+ },
447
+ {
448
+ "Column": "DeletingIDUser",
449
+ "Type": "DeleteIDUser",
450
+ "Size": "int"
451
+ },
452
+ {
453
+ "Column": "Name",
454
+ "Type": "String",
455
+ "Size": "200"
456
+ }
457
+ ],
458
+ "DefaultObject": {
459
+ "IDAuthor": 0,
460
+ "GUIDAuthor": "0x0000000000000000",
461
+ "CreateDate": null,
462
+ "CreatingIDUser": 0,
463
+ "UpdateDate": null,
464
+ "UpdatingIDUser": 0,
465
+ "Deleted": false,
466
+ "DeleteDate": null,
467
+ "DeletingIDUser": 0,
468
+ "Name": ""
469
+ },
470
+ "JsonSchema": {
471
+ "title": "Author",
472
+ "type": "object",
473
+ "properties": {
474
+ "IDAuthor": {
475
+ "type": "integer",
476
+ "size": "Default"
477
+ },
478
+ "GUIDAuthor": {
479
+ "type": "string",
480
+ "size": "36"
481
+ },
482
+ "CreateDate": {
483
+ "type": "string",
484
+ "size": "Default"
485
+ },
486
+ "CreatingIDUser": {
487
+ "type": "integer",
488
+ "size": "int"
489
+ },
490
+ "UpdateDate": {
491
+ "type": "string",
492
+ "size": "Default"
493
+ },
494
+ "UpdatingIDUser": {
495
+ "type": "integer",
496
+ "size": "int"
497
+ },
498
+ "Deleted": {
499
+ "type": "boolean",
500
+ "size": "Default"
501
+ },
502
+ "DeleteDate": {
503
+ "type": "string",
504
+ "size": "Default"
505
+ },
506
+ "DeletingIDUser": {
507
+ "type": "integer",
508
+ "size": "int"
509
+ },
510
+ "Name": {
511
+ "type": "string",
512
+ "size": "200"
513
+ }
514
+ },
515
+ "required": [
516
+ "IDAuthor"
517
+ ]
518
+ },
519
+ "Authorization": {}
520
+ }
521
+ },
522
+ "BookPrice": {
523
+ "TableName": "BookPrice",
524
+ "Domain": "Default",
525
+ "Columns": [
526
+ {
527
+ "Column": "IDBookPrice",
528
+ "DataType": "ID"
529
+ },
530
+ {
531
+ "Column": "GUIDBookPrice",
532
+ "DataType": "GUID",
533
+ "Size": "36"
534
+ },
535
+ {
536
+ "Column": "CreateDate",
537
+ "DataType": "DateTime"
538
+ },
539
+ {
540
+ "Column": "CreatingIDUser",
541
+ "DataType": "Numeric",
542
+ "Size": "int"
543
+ },
544
+ {
545
+ "Column": "UpdateDate",
546
+ "DataType": "DateTime"
547
+ },
548
+ {
549
+ "Column": "UpdatingIDUser",
550
+ "DataType": "Numeric",
551
+ "Size": "int"
552
+ },
553
+ {
554
+ "Column": "Deleted",
555
+ "DataType": "Boolean"
556
+ },
557
+ {
558
+ "Column": "DeleteDate",
559
+ "DataType": "DateTime"
560
+ },
561
+ {
562
+ "Column": "DeletingIDUser",
563
+ "DataType": "Numeric",
564
+ "Size": "int"
565
+ },
566
+ {
567
+ "Column": "Price",
568
+ "DataType": "Decimal",
569
+ "Size": "8,2"
570
+ },
571
+ {
572
+ "Column": "StartDate",
573
+ "DataType": "DateTime"
574
+ },
575
+ {
576
+ "Column": "EndDate",
577
+ "DataType": "DateTime"
578
+ },
579
+ {
580
+ "Column": "Discountable",
581
+ "DataType": "Boolean"
582
+ },
583
+ {
584
+ "Column": "CouponCode",
585
+ "DataType": "String",
586
+ "Size": "16"
587
+ },
588
+ {
589
+ "Column": "IDBook",
590
+ "DataType": "Numeric",
591
+ "Size": "int",
592
+ "Join": "IDBook"
593
+ }
594
+ ],
595
+ "Description": "",
596
+ "MeadowSchema": {
597
+ "Scope": "BookPrice",
598
+ "DefaultIdentifier": "IDBookPrice",
599
+ "Domain": "Default",
600
+ "Schema": [
601
+ {
602
+ "Column": "IDBookPrice",
603
+ "Type": "AutoIdentity",
604
+ "Size": "Default"
605
+ },
606
+ {
607
+ "Column": "GUIDBookPrice",
608
+ "Type": "AutoGUID",
609
+ "Size": "36"
610
+ },
611
+ {
612
+ "Column": "CreateDate",
613
+ "Type": "CreateDate",
614
+ "Size": "Default"
615
+ },
616
+ {
617
+ "Column": "CreatingIDUser",
618
+ "Type": "CreateIDUser",
619
+ "Size": "int"
620
+ },
621
+ {
622
+ "Column": "UpdateDate",
623
+ "Type": "UpdateDate",
624
+ "Size": "Default"
625
+ },
626
+ {
627
+ "Column": "UpdatingIDUser",
628
+ "Type": "UpdateIDUser",
629
+ "Size": "int"
630
+ },
631
+ {
632
+ "Column": "Deleted",
633
+ "Type": "Deleted",
634
+ "Size": "Default"
635
+ },
636
+ {
637
+ "Column": "DeleteDate",
638
+ "Type": "DeleteDate",
639
+ "Size": "Default"
640
+ },
641
+ {
642
+ "Column": "DeletingIDUser",
643
+ "Type": "DeleteIDUser",
644
+ "Size": "int"
645
+ },
646
+ {
647
+ "Column": "Price",
648
+ "Type": "Decimal",
649
+ "Size": "8,2"
650
+ },
651
+ {
652
+ "Column": "StartDate",
653
+ "Type": "DateTime",
654
+ "Size": "Default"
655
+ },
656
+ {
657
+ "Column": "EndDate",
658
+ "Type": "DateTime",
659
+ "Size": "Default"
660
+ },
661
+ {
662
+ "Column": "Discountable",
663
+ "Type": "Boolean",
664
+ "Size": "Default"
665
+ },
666
+ {
667
+ "Column": "CouponCode",
668
+ "Type": "String",
669
+ "Size": "16"
670
+ },
671
+ {
672
+ "Column": "IDBook",
673
+ "Type": "Integer",
674
+ "Size": "int"
675
+ }
676
+ ],
677
+ "DefaultObject": {
678
+ "IDBookPrice": 0,
679
+ "GUIDBookPrice": "0x0000000000000000",
680
+ "CreateDate": null,
681
+ "CreatingIDUser": 0,
682
+ "UpdateDate": null,
683
+ "UpdatingIDUser": 0,
684
+ "Deleted": false,
685
+ "DeleteDate": null,
686
+ "DeletingIDUser": 0,
687
+ "Price": 0,
688
+ "StartDate": null,
689
+ "EndDate": null,
690
+ "Discountable": false,
691
+ "CouponCode": "",
692
+ "IDBook": 0
693
+ },
694
+ "JsonSchema": {
695
+ "title": "BookPrice",
696
+ "type": "object",
697
+ "properties": {
698
+ "IDBookPrice": {
699
+ "type": "integer",
700
+ "size": "Default"
701
+ },
702
+ "GUIDBookPrice": {
703
+ "type": "string",
704
+ "size": "36"
705
+ },
706
+ "CreateDate": {
707
+ "type": "string",
708
+ "size": "Default"
709
+ },
710
+ "CreatingIDUser": {
711
+ "type": "integer",
712
+ "size": "int"
713
+ },
714
+ "UpdateDate": {
715
+ "type": "string",
716
+ "size": "Default"
717
+ },
718
+ "UpdatingIDUser": {
719
+ "type": "integer",
720
+ "size": "int"
721
+ },
722
+ "Deleted": {
723
+ "type": "boolean",
724
+ "size": "Default"
725
+ },
726
+ "DeleteDate": {
727
+ "type": "string",
728
+ "size": "Default"
729
+ },
730
+ "DeletingIDUser": {
731
+ "type": "integer",
732
+ "size": "int"
733
+ },
734
+ "Price": {
735
+ "type": "number",
736
+ "size": "8,2"
737
+ },
738
+ "StartDate": {
739
+ "type": "string",
740
+ "size": "Default"
741
+ },
742
+ "EndDate": {
743
+ "type": "string",
744
+ "size": "Default"
745
+ },
746
+ "Discountable": {
747
+ "type": "boolean",
748
+ "size": "Default"
749
+ },
750
+ "CouponCode": {
751
+ "type": "string",
752
+ "size": "16"
753
+ },
754
+ "IDBook": {
755
+ "type": "integer",
756
+ "size": "int"
757
+ }
758
+ },
759
+ "required": [
760
+ "IDBookPrice"
761
+ ]
762
+ },
763
+ "Authorization": {}
764
+ }
765
+ },
766
+ "Review": {
767
+ "TableName": "Review",
768
+ "Domain": "Default",
769
+ "Columns": [
770
+ {
771
+ "Column": "IDReviews",
772
+ "DataType": "ID"
773
+ },
774
+ {
775
+ "Column": "GUIDReviews",
776
+ "DataType": "GUID",
777
+ "Size": "36"
778
+ },
779
+ {
780
+ "Column": "CreateDate",
781
+ "DataType": "DateTime"
782
+ },
783
+ {
784
+ "Column": "CreatingIDUser",
785
+ "DataType": "Numeric",
786
+ "Size": "int"
787
+ },
788
+ {
789
+ "Column": "UpdateDate",
790
+ "DataType": "DateTime"
791
+ },
792
+ {
793
+ "Column": "UpdatingIDUser",
794
+ "DataType": "Numeric",
795
+ "Size": "int"
796
+ },
797
+ {
798
+ "Column": "Deleted",
799
+ "DataType": "Boolean"
800
+ },
801
+ {
802
+ "Column": "DeleteDate",
803
+ "DataType": "DateTime"
804
+ },
805
+ {
806
+ "Column": "DeletingIDUser",
807
+ "DataType": "Numeric",
808
+ "Size": "int"
809
+ },
810
+ {
811
+ "Column": "Text",
812
+ "DataType": "Text"
813
+ },
814
+ {
815
+ "Column": "Rating",
816
+ "DataType": "Numeric",
817
+ "Size": "int"
818
+ },
819
+ {
820
+ "Column": "IDBook",
821
+ "DataType": "Numeric",
822
+ "Size": "int",
823
+ "Join": "IDBook"
824
+ }
825
+ ],
826
+ "Description": "",
827
+ "MeadowSchema": {
828
+ "Scope": "Review",
829
+ "DefaultIdentifier": "IDReviews",
830
+ "Domain": "Default",
831
+ "Schema": [
832
+ {
833
+ "Column": "IDReviews",
834
+ "Type": "AutoIdentity",
835
+ "Size": "Default"
836
+ },
837
+ {
838
+ "Column": "GUIDReviews",
839
+ "Type": "AutoGUID",
840
+ "Size": "36"
841
+ },
842
+ {
843
+ "Column": "CreateDate",
844
+ "Type": "CreateDate",
845
+ "Size": "Default"
846
+ },
847
+ {
848
+ "Column": "CreatingIDUser",
849
+ "Type": "CreateIDUser",
850
+ "Size": "int"
851
+ },
852
+ {
853
+ "Column": "UpdateDate",
854
+ "Type": "UpdateDate",
855
+ "Size": "Default"
856
+ },
857
+ {
858
+ "Column": "UpdatingIDUser",
859
+ "Type": "UpdateIDUser",
860
+ "Size": "int"
861
+ },
862
+ {
863
+ "Column": "Deleted",
864
+ "Type": "Deleted",
865
+ "Size": "Default"
866
+ },
867
+ {
868
+ "Column": "DeleteDate",
869
+ "Type": "DeleteDate",
870
+ "Size": "Default"
871
+ },
872
+ {
873
+ "Column": "DeletingIDUser",
874
+ "Type": "DeleteIDUser",
875
+ "Size": "int"
876
+ },
877
+ {
878
+ "Column": "Text",
879
+ "Type": "String",
880
+ "Size": "Default"
881
+ },
882
+ {
883
+ "Column": "Rating",
884
+ "Type": "Integer",
885
+ "Size": "int"
886
+ },
887
+ {
888
+ "Column": "IDBook",
889
+ "Type": "Integer",
890
+ "Size": "int"
891
+ }
892
+ ],
893
+ "DefaultObject": {
894
+ "IDReviews": 0,
895
+ "GUIDReviews": "0x0000000000000000",
896
+ "CreateDate": null,
897
+ "CreatingIDUser": 0,
898
+ "UpdateDate": null,
899
+ "UpdatingIDUser": 0,
900
+ "Deleted": false,
901
+ "DeleteDate": null,
902
+ "DeletingIDUser": 0,
903
+ "Text": "",
904
+ "Rating": 0,
905
+ "IDBook": 0
906
+ },
907
+ "JsonSchema": {
908
+ "title": "Review",
909
+ "type": "object",
910
+ "properties": {
911
+ "IDReviews": {
912
+ "type": "integer",
913
+ "size": "Default"
914
+ },
915
+ "GUIDReviews": {
916
+ "type": "string",
917
+ "size": "36"
918
+ },
919
+ "CreateDate": {
920
+ "type": "string",
921
+ "size": "Default"
922
+ },
923
+ "CreatingIDUser": {
924
+ "type": "integer",
925
+ "size": "int"
926
+ },
927
+ "UpdateDate": {
928
+ "type": "string",
929
+ "size": "Default"
930
+ },
931
+ "UpdatingIDUser": {
932
+ "type": "integer",
933
+ "size": "int"
934
+ },
935
+ "Deleted": {
936
+ "type": "boolean",
937
+ "size": "Default"
938
+ },
939
+ "DeleteDate": {
940
+ "type": "string",
941
+ "size": "Default"
942
+ },
943
+ "DeletingIDUser": {
944
+ "type": "integer",
945
+ "size": "int"
946
+ },
947
+ "Text": {
948
+ "type": "string",
949
+ "size": "Default"
950
+ },
951
+ "Rating": {
952
+ "type": "integer",
953
+ "size": "int"
954
+ },
955
+ "IDBook": {
956
+ "type": "integer",
957
+ "size": "int"
958
+ }
959
+ },
960
+ "required": [
961
+ "IDReviews"
962
+ ]
963
+ },
964
+ "Authorization": {}
965
+ }
966
+ }
967
+ },
968
+ "TablesSequence": [
969
+ "Book",
970
+ "BookAuthorJoin",
971
+ "Author",
972
+ "BookPrice",
973
+ "Review"
974
+ ],
975
+ "Authorization": {
976
+ "Book": {
977
+ "__DefaultAPISecurity": {
978
+ "Create": "Deny",
979
+ "Read": "Deny",
980
+ "Reads": "Deny",
981
+ "ReadsBy": "Deny",
982
+ "ReadMax": "Deny",
983
+ "ReadSelectList": "Deny",
984
+ "Update": "Deny",
985
+ "Delete": "Deny",
986
+ "Count": "Deny",
987
+ "CountBy": "Deny",
988
+ "Schema": "Deny",
989
+ "Validate": "Deny",
990
+ "New": "Deny"
991
+ },
992
+ "Unauthenticated": {
993
+ "Create": "Deny",
994
+ "Read": "Deny",
995
+ "Reads": "Deny",
996
+ "ReadsBy": "Deny",
997
+ "ReadMax": "Deny",
998
+ "ReadSelectList": "Deny",
999
+ "Update": "Deny",
1000
+ "Delete": "Deny",
1001
+ "Count": "Deny",
1002
+ "CountBy": "Deny",
1003
+ "Schema": "Deny",
1004
+ "Validate": "Deny",
1005
+ "New": "Deny"
1006
+ },
1007
+ "Readonly": {
1008
+ "Create": "Deny",
1009
+ "Read": "Allow",
1010
+ "Reads": "Allow",
1011
+ "ReadsBy": "Allow",
1012
+ "ReadMax": "Allow",
1013
+ "ReadSelectList": "Allow",
1014
+ "Update": "Deny",
1015
+ "Delete": "Deny",
1016
+ "Count": "Allow",
1017
+ "CountBy": "Allow",
1018
+ "Schema": "Allow",
1019
+ "Validate": "Allow",
1020
+ "New": "Deny"
1021
+ },
1022
+ "User": {
1023
+ "Create": "Allow",
1024
+ "Read": "MyCustomer",
1025
+ "Reads": "MyCustomer",
1026
+ "ReadsBy": "MyCustomer",
1027
+ "ReadMax": "MyCustomer",
1028
+ "ReadSelectList": "MyCustomer",
1029
+ "Update": "Mine",
1030
+ "Delete": "Mine",
1031
+ "Count": "MyCustomer",
1032
+ "CountBy": "MyCustomer",
1033
+ "Schema": "MyCustomer",
1034
+ "Validate": "MyCustomer",
1035
+ "New": "MyCustomer"
1036
+ },
1037
+ "Manager": {
1038
+ "Create": "Allow",
1039
+ "Read": "MyCustomer",
1040
+ "Reads": "MyCustomer",
1041
+ "ReadsBy": "MyCustomer",
1042
+ "ReadMax": "MyCustomer",
1043
+ "ReadSelectList": "MyCustomer",
1044
+ "Update": "Mine",
1045
+ "Delete": "Mine",
1046
+ "Count": "MyCustomer",
1047
+ "CountBy": "MyCustomer",
1048
+ "Schema": "MyCustomer",
1049
+ "Validate": "MyCustomer",
1050
+ "New": "MyCustomer"
1051
+ },
1052
+ "Director": {
1053
+ "Create": "Allow",
1054
+ "Read": "MyCustomer",
1055
+ "Reads": "MyCustomer",
1056
+ "ReadsBy": "MyCustomer",
1057
+ "ReadMax": "MyCustomer",
1058
+ "ReadSelectList": "MyCustomer",
1059
+ "Update": "MyCustomer",
1060
+ "Delete": "MyCustomer",
1061
+ "Count": "MyCustomer",
1062
+ "CountBy": "MyCustomer",
1063
+ "Schema": "MyCustomer",
1064
+ "Validate": "MyCustomer",
1065
+ "New": "MyCustomer"
1066
+ },
1067
+ "Executive": {
1068
+ "Create": "Allow",
1069
+ "Read": "MyCustomer",
1070
+ "Reads": "MyCustomer",
1071
+ "ReadsBy": "MyCustomer",
1072
+ "ReadMax": "MyCustomer",
1073
+ "ReadSelectList": "MyCustomer",
1074
+ "Update": "MyCustomer",
1075
+ "Delete": "MyCustomer",
1076
+ "Count": "MyCustomer",
1077
+ "CountBy": "MyCustomer",
1078
+ "Schema": "MyCustomer",
1079
+ "Validate": "MyCustomer",
1080
+ "New": "MyCustomer"
1081
+ },
1082
+ "Administrator": {
1083
+ "Create": "Allow",
1084
+ "Read": "Allow",
1085
+ "Reads": "Allow",
1086
+ "ReadsBy": "Allow",
1087
+ "ReadMax": "Allow",
1088
+ "ReadSelectList": "Allow",
1089
+ "Update": "Allow",
1090
+ "Delete": "Allow",
1091
+ "Count": "Allow",
1092
+ "CountBy": "Allow",
1093
+ "Schema": "Allow",
1094
+ "Validate": "Allow",
1095
+ "New": "Allow"
1096
+ }
1097
+ },
1098
+ "BookAuthorJoin": {
1099
+ "__DefaultAPISecurity": {
1100
+ "Create": "Deny",
1101
+ "Read": "Deny",
1102
+ "Reads": "Deny",
1103
+ "ReadsBy": "Deny",
1104
+ "ReadMax": "Deny",
1105
+ "ReadSelectList": "Deny",
1106
+ "Update": "Deny",
1107
+ "Delete": "Deny",
1108
+ "Count": "Deny",
1109
+ "CountBy": "Deny",
1110
+ "Schema": "Deny",
1111
+ "Validate": "Deny",
1112
+ "New": "Deny"
1113
+ },
1114
+ "Unauthenticated": {
1115
+ "Create": "Deny",
1116
+ "Read": "Deny",
1117
+ "Reads": "Deny",
1118
+ "ReadsBy": "Deny",
1119
+ "ReadMax": "Deny",
1120
+ "ReadSelectList": "Deny",
1121
+ "Update": "Deny",
1122
+ "Delete": "Deny",
1123
+ "Count": "Deny",
1124
+ "CountBy": "Deny",
1125
+ "Schema": "Deny",
1126
+ "Validate": "Deny",
1127
+ "New": "Deny"
1128
+ },
1129
+ "Readonly": {
1130
+ "Create": "Deny",
1131
+ "Read": "Allow",
1132
+ "Reads": "Allow",
1133
+ "ReadsBy": "Allow",
1134
+ "ReadMax": "Allow",
1135
+ "ReadSelectList": "Allow",
1136
+ "Update": "Deny",
1137
+ "Delete": "Deny",
1138
+ "Count": "Allow",
1139
+ "CountBy": "Allow",
1140
+ "Schema": "Allow",
1141
+ "Validate": "Allow",
1142
+ "New": "Deny"
1143
+ },
1144
+ "User": {
1145
+ "Create": "Allow",
1146
+ "Read": "MyCustomer",
1147
+ "Reads": "MyCustomer",
1148
+ "ReadsBy": "MyCustomer",
1149
+ "ReadMax": "MyCustomer",
1150
+ "ReadSelectList": "MyCustomer",
1151
+ "Update": "Mine",
1152
+ "Delete": "Mine",
1153
+ "Count": "MyCustomer",
1154
+ "CountBy": "MyCustomer",
1155
+ "Schema": "MyCustomer",
1156
+ "Validate": "MyCustomer",
1157
+ "New": "MyCustomer"
1158
+ },
1159
+ "Manager": {
1160
+ "Create": "Allow",
1161
+ "Read": "MyCustomer",
1162
+ "Reads": "MyCustomer",
1163
+ "ReadsBy": "MyCustomer",
1164
+ "ReadMax": "MyCustomer",
1165
+ "ReadSelectList": "MyCustomer",
1166
+ "Update": "Mine",
1167
+ "Delete": "Mine",
1168
+ "Count": "MyCustomer",
1169
+ "CountBy": "MyCustomer",
1170
+ "Schema": "MyCustomer",
1171
+ "Validate": "MyCustomer",
1172
+ "New": "MyCustomer"
1173
+ },
1174
+ "Director": {
1175
+ "Create": "Allow",
1176
+ "Read": "MyCustomer",
1177
+ "Reads": "MyCustomer",
1178
+ "ReadsBy": "MyCustomer",
1179
+ "ReadMax": "MyCustomer",
1180
+ "ReadSelectList": "MyCustomer",
1181
+ "Update": "MyCustomer",
1182
+ "Delete": "MyCustomer",
1183
+ "Count": "MyCustomer",
1184
+ "CountBy": "MyCustomer",
1185
+ "Schema": "MyCustomer",
1186
+ "Validate": "MyCustomer",
1187
+ "New": "MyCustomer"
1188
+ },
1189
+ "Executive": {
1190
+ "Create": "Allow",
1191
+ "Read": "MyCustomer",
1192
+ "Reads": "MyCustomer",
1193
+ "ReadsBy": "MyCustomer",
1194
+ "ReadMax": "MyCustomer",
1195
+ "ReadSelectList": "MyCustomer",
1196
+ "Update": "MyCustomer",
1197
+ "Delete": "MyCustomer",
1198
+ "Count": "MyCustomer",
1199
+ "CountBy": "MyCustomer",
1200
+ "Schema": "MyCustomer",
1201
+ "Validate": "MyCustomer",
1202
+ "New": "MyCustomer"
1203
+ },
1204
+ "Administrator": {
1205
+ "Create": "Allow",
1206
+ "Read": "Allow",
1207
+ "Reads": "Allow",
1208
+ "ReadsBy": "Allow",
1209
+ "ReadMax": "Allow",
1210
+ "ReadSelectList": "Allow",
1211
+ "Update": "Allow",
1212
+ "Delete": "Allow",
1213
+ "Count": "Allow",
1214
+ "CountBy": "Allow",
1215
+ "Schema": "Allow",
1216
+ "Validate": "Allow",
1217
+ "New": "Allow"
1218
+ }
1219
+ },
1220
+ "Author": {
1221
+ "__DefaultAPISecurity": {
1222
+ "Create": "Deny",
1223
+ "Read": "Deny",
1224
+ "Reads": "Deny",
1225
+ "ReadsBy": "Deny",
1226
+ "ReadMax": "Deny",
1227
+ "ReadSelectList": "Deny",
1228
+ "Update": "Deny",
1229
+ "Delete": "Deny",
1230
+ "Count": "Deny",
1231
+ "CountBy": "Deny",
1232
+ "Schema": "Deny",
1233
+ "Validate": "Deny",
1234
+ "New": "Deny"
1235
+ },
1236
+ "Unauthenticated": {
1237
+ "Create": "Deny",
1238
+ "Read": "Deny",
1239
+ "Reads": "Deny",
1240
+ "ReadsBy": "Deny",
1241
+ "ReadMax": "Deny",
1242
+ "ReadSelectList": "Deny",
1243
+ "Update": "Deny",
1244
+ "Delete": "Deny",
1245
+ "Count": "Deny",
1246
+ "CountBy": "Deny",
1247
+ "Schema": "Deny",
1248
+ "Validate": "Deny",
1249
+ "New": "Deny"
1250
+ },
1251
+ "Readonly": {
1252
+ "Create": "Deny",
1253
+ "Read": "Allow",
1254
+ "Reads": "Allow",
1255
+ "ReadsBy": "Allow",
1256
+ "ReadMax": "Allow",
1257
+ "ReadSelectList": "Allow",
1258
+ "Update": "Deny",
1259
+ "Delete": "Deny",
1260
+ "Count": "Allow",
1261
+ "CountBy": "Allow",
1262
+ "Schema": "Allow",
1263
+ "Validate": "Allow",
1264
+ "New": "Deny"
1265
+ },
1266
+ "User": {
1267
+ "Create": "Allow",
1268
+ "Read": "MyCustomer",
1269
+ "Reads": "MyCustomer",
1270
+ "ReadsBy": "MyCustomer",
1271
+ "ReadMax": "MyCustomer",
1272
+ "ReadSelectList": "MyCustomer",
1273
+ "Update": "Mine",
1274
+ "Delete": "Mine",
1275
+ "Count": "MyCustomer",
1276
+ "CountBy": "MyCustomer",
1277
+ "Schema": "MyCustomer",
1278
+ "Validate": "MyCustomer",
1279
+ "New": "MyCustomer"
1280
+ },
1281
+ "Manager": {
1282
+ "Create": "Allow",
1283
+ "Read": "MyCustomer",
1284
+ "Reads": "MyCustomer",
1285
+ "ReadsBy": "MyCustomer",
1286
+ "ReadMax": "MyCustomer",
1287
+ "ReadSelectList": "MyCustomer",
1288
+ "Update": "Mine",
1289
+ "Delete": "Mine",
1290
+ "Count": "MyCustomer",
1291
+ "CountBy": "MyCustomer",
1292
+ "Schema": "MyCustomer",
1293
+ "Validate": "MyCustomer",
1294
+ "New": "MyCustomer"
1295
+ },
1296
+ "Director": {
1297
+ "Create": "Allow",
1298
+ "Read": "MyCustomer",
1299
+ "Reads": "MyCustomer",
1300
+ "ReadsBy": "MyCustomer",
1301
+ "ReadMax": "MyCustomer",
1302
+ "ReadSelectList": "MyCustomer",
1303
+ "Update": "MyCustomer",
1304
+ "Delete": "MyCustomer",
1305
+ "Count": "MyCustomer",
1306
+ "CountBy": "MyCustomer",
1307
+ "Schema": "MyCustomer",
1308
+ "Validate": "MyCustomer",
1309
+ "New": "MyCustomer"
1310
+ },
1311
+ "Executive": {
1312
+ "Create": "Allow",
1313
+ "Read": "MyCustomer",
1314
+ "Reads": "MyCustomer",
1315
+ "ReadsBy": "MyCustomer",
1316
+ "ReadMax": "MyCustomer",
1317
+ "ReadSelectList": "MyCustomer",
1318
+ "Update": "MyCustomer",
1319
+ "Delete": "MyCustomer",
1320
+ "Count": "MyCustomer",
1321
+ "CountBy": "MyCustomer",
1322
+ "Schema": "MyCustomer",
1323
+ "Validate": "MyCustomer",
1324
+ "New": "MyCustomer"
1325
+ },
1326
+ "Administrator": {
1327
+ "Create": "Allow",
1328
+ "Read": "Allow",
1329
+ "Reads": "Allow",
1330
+ "ReadsBy": "Allow",
1331
+ "ReadMax": "Allow",
1332
+ "ReadSelectList": "Allow",
1333
+ "Update": "Allow",
1334
+ "Delete": "Allow",
1335
+ "Count": "Allow",
1336
+ "CountBy": "Allow",
1337
+ "Schema": "Allow",
1338
+ "Validate": "Allow",
1339
+ "New": "Allow"
1340
+ }
1341
+ },
1342
+ "BookPrice": {
1343
+ "__DefaultAPISecurity": {
1344
+ "Create": "Deny",
1345
+ "Read": "Deny",
1346
+ "Reads": "Deny",
1347
+ "ReadsBy": "Deny",
1348
+ "ReadMax": "Deny",
1349
+ "ReadSelectList": "Deny",
1350
+ "Update": "Deny",
1351
+ "Delete": "Deny",
1352
+ "Count": "Deny",
1353
+ "CountBy": "Deny",
1354
+ "Schema": "Deny",
1355
+ "Validate": "Deny",
1356
+ "New": "Deny"
1357
+ },
1358
+ "Unauthenticated": {
1359
+ "Create": "Deny",
1360
+ "Read": "Deny",
1361
+ "Reads": "Deny",
1362
+ "ReadsBy": "Deny",
1363
+ "ReadMax": "Deny",
1364
+ "ReadSelectList": "Deny",
1365
+ "Update": "Deny",
1366
+ "Delete": "Deny",
1367
+ "Count": "Deny",
1368
+ "CountBy": "Deny",
1369
+ "Schema": "Deny",
1370
+ "Validate": "Deny",
1371
+ "New": "Deny"
1372
+ },
1373
+ "Readonly": {
1374
+ "Create": "Deny",
1375
+ "Read": "Allow",
1376
+ "Reads": "Allow",
1377
+ "ReadsBy": "Allow",
1378
+ "ReadMax": "Allow",
1379
+ "ReadSelectList": "Allow",
1380
+ "Update": "Deny",
1381
+ "Delete": "Deny",
1382
+ "Count": "Allow",
1383
+ "CountBy": "Allow",
1384
+ "Schema": "Allow",
1385
+ "Validate": "Allow",
1386
+ "New": "Deny"
1387
+ },
1388
+ "User": {
1389
+ "Create": "Allow",
1390
+ "Read": "MyCustomer",
1391
+ "Reads": "MyCustomer",
1392
+ "ReadsBy": "MyCustomer",
1393
+ "ReadMax": "MyCustomer",
1394
+ "ReadSelectList": "MyCustomer",
1395
+ "Update": "Mine",
1396
+ "Delete": "Mine",
1397
+ "Count": "MyCustomer",
1398
+ "CountBy": "MyCustomer",
1399
+ "Schema": "MyCustomer",
1400
+ "Validate": "MyCustomer",
1401
+ "New": "MyCustomer"
1402
+ },
1403
+ "Manager": {
1404
+ "Create": "Allow",
1405
+ "Read": "MyCustomer",
1406
+ "Reads": "MyCustomer",
1407
+ "ReadsBy": "MyCustomer",
1408
+ "ReadMax": "MyCustomer",
1409
+ "ReadSelectList": "MyCustomer",
1410
+ "Update": "Mine",
1411
+ "Delete": "Mine",
1412
+ "Count": "MyCustomer",
1413
+ "CountBy": "MyCustomer",
1414
+ "Schema": "MyCustomer",
1415
+ "Validate": "MyCustomer",
1416
+ "New": "MyCustomer"
1417
+ },
1418
+ "Director": {
1419
+ "Create": "Allow",
1420
+ "Read": "MyCustomer",
1421
+ "Reads": "MyCustomer",
1422
+ "ReadsBy": "MyCustomer",
1423
+ "ReadMax": "MyCustomer",
1424
+ "ReadSelectList": "MyCustomer",
1425
+ "Update": "MyCustomer",
1426
+ "Delete": "MyCustomer",
1427
+ "Count": "MyCustomer",
1428
+ "CountBy": "MyCustomer",
1429
+ "Schema": "MyCustomer",
1430
+ "Validate": "MyCustomer",
1431
+ "New": "MyCustomer"
1432
+ },
1433
+ "Executive": {
1434
+ "Create": "Allow",
1435
+ "Read": "MyCustomer",
1436
+ "Reads": "MyCustomer",
1437
+ "ReadsBy": "MyCustomer",
1438
+ "ReadMax": "MyCustomer",
1439
+ "ReadSelectList": "MyCustomer",
1440
+ "Update": "MyCustomer",
1441
+ "Delete": "MyCustomer",
1442
+ "Count": "MyCustomer",
1443
+ "CountBy": "MyCustomer",
1444
+ "Schema": "MyCustomer",
1445
+ "Validate": "MyCustomer",
1446
+ "New": "MyCustomer"
1447
+ },
1448
+ "Administrator": {
1449
+ "Create": "Allow",
1450
+ "Read": "Allow",
1451
+ "Reads": "Allow",
1452
+ "ReadsBy": "Allow",
1453
+ "ReadMax": "Allow",
1454
+ "ReadSelectList": "Allow",
1455
+ "Update": "Allow",
1456
+ "Delete": "Allow",
1457
+ "Count": "Allow",
1458
+ "CountBy": "Allow",
1459
+ "Schema": "Allow",
1460
+ "Validate": "Allow",
1461
+ "New": "Allow"
1462
+ }
1463
+ },
1464
+ "Review": {
1465
+ "__DefaultAPISecurity": {
1466
+ "Create": "Deny",
1467
+ "Read": "Deny",
1468
+ "Reads": "Deny",
1469
+ "ReadsBy": "Deny",
1470
+ "ReadMax": "Deny",
1471
+ "ReadSelectList": "Deny",
1472
+ "Update": "Deny",
1473
+ "Delete": "Deny",
1474
+ "Count": "Deny",
1475
+ "CountBy": "Deny",
1476
+ "Schema": "Deny",
1477
+ "Validate": "Deny",
1478
+ "New": "Deny"
1479
+ },
1480
+ "Unauthenticated": {
1481
+ "Create": "Deny",
1482
+ "Read": "Deny",
1483
+ "Reads": "Deny",
1484
+ "ReadsBy": "Deny",
1485
+ "ReadMax": "Deny",
1486
+ "ReadSelectList": "Deny",
1487
+ "Update": "Deny",
1488
+ "Delete": "Deny",
1489
+ "Count": "Deny",
1490
+ "CountBy": "Deny",
1491
+ "Schema": "Deny",
1492
+ "Validate": "Deny",
1493
+ "New": "Deny"
1494
+ },
1495
+ "Readonly": {
1496
+ "Create": "Deny",
1497
+ "Read": "Allow",
1498
+ "Reads": "Allow",
1499
+ "ReadsBy": "Allow",
1500
+ "ReadMax": "Allow",
1501
+ "ReadSelectList": "Allow",
1502
+ "Update": "Deny",
1503
+ "Delete": "Deny",
1504
+ "Count": "Allow",
1505
+ "CountBy": "Allow",
1506
+ "Schema": "Allow",
1507
+ "Validate": "Allow",
1508
+ "New": "Deny"
1509
+ },
1510
+ "User": {
1511
+ "Create": "Allow",
1512
+ "Read": "MyCustomer",
1513
+ "Reads": "MyCustomer",
1514
+ "ReadsBy": "MyCustomer",
1515
+ "ReadMax": "MyCustomer",
1516
+ "ReadSelectList": "MyCustomer",
1517
+ "Update": "Mine",
1518
+ "Delete": "Mine",
1519
+ "Count": "MyCustomer",
1520
+ "CountBy": "MyCustomer",
1521
+ "Schema": "MyCustomer",
1522
+ "Validate": "MyCustomer",
1523
+ "New": "MyCustomer"
1524
+ },
1525
+ "Manager": {
1526
+ "Create": "Allow",
1527
+ "Read": "MyCustomer",
1528
+ "Reads": "MyCustomer",
1529
+ "ReadsBy": "MyCustomer",
1530
+ "ReadMax": "MyCustomer",
1531
+ "ReadSelectList": "MyCustomer",
1532
+ "Update": "Mine",
1533
+ "Delete": "Mine",
1534
+ "Count": "MyCustomer",
1535
+ "CountBy": "MyCustomer",
1536
+ "Schema": "MyCustomer",
1537
+ "Validate": "MyCustomer",
1538
+ "New": "MyCustomer"
1539
+ },
1540
+ "Director": {
1541
+ "Create": "Allow",
1542
+ "Read": "MyCustomer",
1543
+ "Reads": "MyCustomer",
1544
+ "ReadsBy": "MyCustomer",
1545
+ "ReadMax": "MyCustomer",
1546
+ "ReadSelectList": "MyCustomer",
1547
+ "Update": "MyCustomer",
1548
+ "Delete": "MyCustomer",
1549
+ "Count": "MyCustomer",
1550
+ "CountBy": "MyCustomer",
1551
+ "Schema": "MyCustomer",
1552
+ "Validate": "MyCustomer",
1553
+ "New": "MyCustomer"
1554
+ },
1555
+ "Executive": {
1556
+ "Create": "Allow",
1557
+ "Read": "MyCustomer",
1558
+ "Reads": "MyCustomer",
1559
+ "ReadsBy": "MyCustomer",
1560
+ "ReadMax": "MyCustomer",
1561
+ "ReadSelectList": "MyCustomer",
1562
+ "Update": "MyCustomer",
1563
+ "Delete": "MyCustomer",
1564
+ "Count": "MyCustomer",
1565
+ "CountBy": "MyCustomer",
1566
+ "Schema": "MyCustomer",
1567
+ "Validate": "MyCustomer",
1568
+ "New": "MyCustomer"
1569
+ },
1570
+ "Administrator": {
1571
+ "Create": "Allow",
1572
+ "Read": "Allow",
1573
+ "Reads": "Allow",
1574
+ "ReadsBy": "Allow",
1575
+ "ReadMax": "Allow",
1576
+ "ReadSelectList": "Allow",
1577
+ "Update": "Allow",
1578
+ "Delete": "Allow",
1579
+ "Count": "Allow",
1580
+ "CountBy": "Allow",
1581
+ "Schema": "Allow",
1582
+ "Validate": "Allow",
1583
+ "New": "Allow"
1584
+ }
1585
+ }
1586
+ },
1587
+ "Endpoints": {
1588
+ "Create": true,
1589
+ "Read": true,
1590
+ "Reads": true,
1591
+ "ReadsBy": true,
1592
+ "ReadMax": true,
1593
+ "ReadSelectList": true,
1594
+ "Update": true,
1595
+ "Delete": true,
1596
+ "Count": true,
1597
+ "CountBy": true,
1598
+ "Schema": true,
1599
+ "Validate": true,
1600
+ "New": true
1601
+ },
1602
+ "Pict": {}
1603
+ }