retold-data-service 2.0.6 → 2.0.8

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.
Files changed (51) hide show
  1. package/Dockerfile_Service +50 -0
  2. package/debug/Harness.js +81 -2
  3. package/package.json +15 -7
  4. package/source/Retold-Data-Service.js +44 -13
  5. package/test/RetoldDataService_tests.js +6 -1
  6. package/test/model/MeadowModel-Extended.json +2567 -0
  7. package/test/model/{Model.json → MeadowModel.json} +42 -19
  8. package/{debug/model/generated_documentation → test/model/doc}/Dictionary.md +1 -1
  9. package/{debug/model/generated_documentation → test/model/doc}/Model-Author.md +5 -5
  10. package/{debug/model/generated_documentation → test/model/doc}/Model-Book.md +6 -6
  11. package/{debug/model/generated_documentation → test/model/doc}/Model-BookAuthorJoin.md +4 -4
  12. package/{debug/model/generated_documentation → test/model/doc}/Model-BookPrice.md +6 -6
  13. package/{debug/model/generated_documentation → test/model/doc}/Model-Review.md +7 -7
  14. package/{debug/model/generated_documentation → test/model/doc}/ModelChangeTracking.md +1 -1
  15. package/{debug/model/generated_diagram/Stricture_Output.dot → test/model/doc/diagrams/Relationships.dot} +1 -1
  16. package/test/model/doc/diagrams/RelationshipsFull.dot +13 -0
  17. package/test/model/doc/diagrams/RelationshipsFull.png +0 -0
  18. package/test/model/meadow/MeadowSchemaAuthor.json +431 -0
  19. package/test/model/meadow/MeadowSchemaBook.json +527 -0
  20. package/test/model/meadow/MeadowSchemaBookAuthorJoin.json +335 -0
  21. package/test/model/meadow/MeadowSchemaBookPrice.json +511 -0
  22. package/test/model/meadow/MeadowSchemaReview.json +463 -0
  23. package/{debug/model/sql_create/BookStore-CreateDatabase.mysql.sql → test/model/mysql_create/MeadowModel-CreateMySQLDatabase.mysql.sql} +6 -6
  24. package/debug/bookstore-configuration.json +0 -30
  25. package/debug/model/Model-Extended.json +0 -915
  26. package/debug/model/Model.json +0 -280
  27. package/debug/model/bookstore-api-endpoint-exercises.paw +0 -0
  28. package/debug/model/ddl/BookStore.ddl +0 -66
  29. package/debug/model/generated_diagram/README.md +0 -1
  30. package/debug/model/generated_documentation/README.md +0 -1
  31. package/debug/model/manual_scripts/DropTables.sql +0 -5
  32. package/debug/model/manual_scripts/MySQL-Laden-Entry.sh +0 -17
  33. package/debug/model/manual_scripts/MySQL-Security.sql +0 -5
  34. package/debug/model/manual_scripts/README.md +0 -2
  35. package/debug/model/manual_scripts/my.cnf +0 -4
  36. package/debug/model/meadow/Model-MeadowSchema-Author.json +0 -220
  37. package/debug/model/meadow/Model-MeadowSchema-Book.json +0 -268
  38. package/debug/model/meadow/Model-MeadowSchema-BookAuthorJoin.json +0 -172
  39. package/debug/model/meadow/Model-MeadowSchema-BookPrice.json +0 -260
  40. package/debug/model/meadow/Model-MeadowSchema-Review.json +0 -236
  41. package/debug/model/meadow/README.md +0 -1
  42. package/debug/model/sql_create/BookStore-CreateAndPopulateTables.sql +0 -194
  43. package/debug/model/sql_create/README.md +0 -1
  44. package/test/model/Model-Extended.json +0 -915
  45. package/test/model/meadow/Model-MeadowSchema-Author.json +0 -220
  46. package/test/model/meadow/Model-MeadowSchema-Book.json +0 -268
  47. package/test/model/meadow/Model-MeadowSchema-BookAuthorJoin.json +0 -172
  48. package/test/model/meadow/Model-MeadowSchema-BookPrice.json +0 -260
  49. package/test/model/meadow/Model-MeadowSchema-Review.json +0 -236
  50. /package/{debug/model/Model-PICT.json → test/model/MeadowModel-PICT.json} +0 -0
  51. /package/{debug/model/generated_diagram/Stricture_Output.png → test/model/doc/diagrams/Relationships.png} +0 -0
@@ -0,0 +1,2567 @@
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
+ "MeadowSchema": {
261
+ "TableName": "Book",
262
+ "Domain": "Default",
263
+ "Columns": [
264
+ {
265
+ "Column": "IDBook",
266
+ "DataType": "ID"
267
+ },
268
+ {
269
+ "Column": "GUIDBook",
270
+ "DataType": "GUID",
271
+ "Size": "36"
272
+ },
273
+ {
274
+ "Column": "CreateDate",
275
+ "DataType": "DateTime"
276
+ },
277
+ {
278
+ "Column": "CreatingIDUser",
279
+ "DataType": "Numeric",
280
+ "Size": "int"
281
+ },
282
+ {
283
+ "Column": "UpdateDate",
284
+ "DataType": "DateTime"
285
+ },
286
+ {
287
+ "Column": "UpdatingIDUser",
288
+ "DataType": "Numeric",
289
+ "Size": "int"
290
+ },
291
+ {
292
+ "Column": "Deleted",
293
+ "DataType": "Boolean"
294
+ },
295
+ {
296
+ "Column": "DeleteDate",
297
+ "DataType": "DateTime"
298
+ },
299
+ {
300
+ "Column": "DeletingIDUser",
301
+ "DataType": "Numeric",
302
+ "Size": "int"
303
+ },
304
+ {
305
+ "Column": "Title",
306
+ "DataType": "String",
307
+ "Size": "200"
308
+ },
309
+ {
310
+ "Column": "Type",
311
+ "DataType": "String",
312
+ "Size": "32"
313
+ },
314
+ {
315
+ "Column": "Genre",
316
+ "DataType": "String",
317
+ "Size": "128"
318
+ },
319
+ {
320
+ "Column": "ISBN",
321
+ "DataType": "String",
322
+ "Size": "64"
323
+ },
324
+ {
325
+ "Column": "Language",
326
+ "DataType": "String",
327
+ "Size": "12"
328
+ },
329
+ {
330
+ "Column": "ImageURL",
331
+ "DataType": "String",
332
+ "Size": "254"
333
+ },
334
+ {
335
+ "Column": "PublicationYear",
336
+ "DataType": "Numeric",
337
+ "Size": "int"
338
+ }
339
+ ],
340
+ "Description": "",
341
+ "MeadowSchema": {
342
+ "Scope": "Book",
343
+ "DefaultIdentifier": "IDBook",
344
+ "Domain": "Default",
345
+ "Schema": [
346
+ {
347
+ "Column": "IDBook",
348
+ "Type": "AutoIdentity",
349
+ "Size": "Default"
350
+ },
351
+ {
352
+ "Column": "GUIDBook",
353
+ "Type": "AutoGUID",
354
+ "Size": "36"
355
+ },
356
+ {
357
+ "Column": "CreateDate",
358
+ "Type": "CreateDate",
359
+ "Size": "Default"
360
+ },
361
+ {
362
+ "Column": "CreatingIDUser",
363
+ "Type": "CreateIDUser",
364
+ "Size": "int"
365
+ },
366
+ {
367
+ "Column": "UpdateDate",
368
+ "Type": "UpdateDate",
369
+ "Size": "Default"
370
+ },
371
+ {
372
+ "Column": "UpdatingIDUser",
373
+ "Type": "UpdateIDUser",
374
+ "Size": "int"
375
+ },
376
+ {
377
+ "Column": "Deleted",
378
+ "Type": "Deleted",
379
+ "Size": "Default"
380
+ },
381
+ {
382
+ "Column": "DeleteDate",
383
+ "Type": "DeleteDate",
384
+ "Size": "Default"
385
+ },
386
+ {
387
+ "Column": "DeletingIDUser",
388
+ "Type": "DeleteIDUser",
389
+ "Size": "int"
390
+ },
391
+ {
392
+ "Column": "Title",
393
+ "Type": "String",
394
+ "Size": "200"
395
+ },
396
+ {
397
+ "Column": "Type",
398
+ "Type": "String",
399
+ "Size": "32"
400
+ },
401
+ {
402
+ "Column": "Genre",
403
+ "Type": "String",
404
+ "Size": "128"
405
+ },
406
+ {
407
+ "Column": "ISBN",
408
+ "Type": "String",
409
+ "Size": "64"
410
+ },
411
+ {
412
+ "Column": "Language",
413
+ "Type": "String",
414
+ "Size": "12"
415
+ },
416
+ {
417
+ "Column": "ImageURL",
418
+ "Type": "String",
419
+ "Size": "254"
420
+ },
421
+ {
422
+ "Column": "PublicationYear",
423
+ "Type": "Integer",
424
+ "Size": "int"
425
+ }
426
+ ],
427
+ "DefaultObject": {
428
+ "IDBook": 0,
429
+ "GUIDBook": "0x0000000000000000",
430
+ "CreateDate": null,
431
+ "CreatingIDUser": 0,
432
+ "UpdateDate": null,
433
+ "UpdatingIDUser": 0,
434
+ "Deleted": false,
435
+ "DeleteDate": null,
436
+ "DeletingIDUser": 0,
437
+ "Title": "",
438
+ "Type": "",
439
+ "Genre": "",
440
+ "ISBN": "",
441
+ "Language": "",
442
+ "ImageURL": "",
443
+ "PublicationYear": 0
444
+ },
445
+ "JsonSchema": {
446
+ "title": "Book",
447
+ "type": "object",
448
+ "properties": {
449
+ "IDBook": {
450
+ "type": "integer",
451
+ "size": "Default"
452
+ },
453
+ "GUIDBook": {
454
+ "type": "string",
455
+ "size": "36"
456
+ },
457
+ "CreateDate": {
458
+ "type": "string",
459
+ "size": "Default"
460
+ },
461
+ "CreatingIDUser": {
462
+ "type": "integer",
463
+ "size": "int"
464
+ },
465
+ "UpdateDate": {
466
+ "type": "string",
467
+ "size": "Default"
468
+ },
469
+ "UpdatingIDUser": {
470
+ "type": "integer",
471
+ "size": "int"
472
+ },
473
+ "Deleted": {
474
+ "type": "boolean",
475
+ "size": "Default"
476
+ },
477
+ "DeleteDate": {
478
+ "type": "string",
479
+ "size": "Default"
480
+ },
481
+ "DeletingIDUser": {
482
+ "type": "integer",
483
+ "size": "int"
484
+ },
485
+ "Title": {
486
+ "type": "string",
487
+ "size": "200"
488
+ },
489
+ "Type": {
490
+ "type": "string",
491
+ "size": "32"
492
+ },
493
+ "Genre": {
494
+ "type": "string",
495
+ "size": "128"
496
+ },
497
+ "ISBN": {
498
+ "type": "string",
499
+ "size": "64"
500
+ },
501
+ "Language": {
502
+ "type": "string",
503
+ "size": "12"
504
+ },
505
+ "ImageURL": {
506
+ "type": "string",
507
+ "size": "254"
508
+ },
509
+ "PublicationYear": {
510
+ "type": "integer",
511
+ "size": "int"
512
+ }
513
+ },
514
+ "required": [
515
+ "IDBook"
516
+ ]
517
+ },
518
+ "Authorization": {}
519
+ }
520
+ }
521
+ },
522
+ "Authorization": {}
523
+ }
524
+ },
525
+ "BookAuthorJoin": {
526
+ "TableName": "BookAuthorJoin",
527
+ "Domain": "Default",
528
+ "Columns": [
529
+ {
530
+ "Column": "IDBookAuthorJoin",
531
+ "DataType": "ID"
532
+ },
533
+ {
534
+ "Column": "GUIDBookAuthorJoin",
535
+ "DataType": "GUID",
536
+ "Size": "36"
537
+ },
538
+ {
539
+ "Column": "IDBook",
540
+ "DataType": "Numeric",
541
+ "Size": "int",
542
+ "Join": "IDBook"
543
+ },
544
+ {
545
+ "Column": "IDAuthor",
546
+ "DataType": "Numeric",
547
+ "Size": "int",
548
+ "Join": "IDAuthor"
549
+ }
550
+ ],
551
+ "Description": "",
552
+ "MeadowSchema": {
553
+ "Scope": "BookAuthorJoin",
554
+ "DefaultIdentifier": "IDBookAuthorJoin",
555
+ "Domain": "Default",
556
+ "Schema": [
557
+ {
558
+ "Column": "IDBookAuthorJoin",
559
+ "Type": "AutoIdentity",
560
+ "Size": "Default"
561
+ },
562
+ {
563
+ "Column": "GUIDBookAuthorJoin",
564
+ "Type": "AutoGUID",
565
+ "Size": "36"
566
+ },
567
+ {
568
+ "Column": "IDBook",
569
+ "Type": "Integer",
570
+ "Size": "int"
571
+ },
572
+ {
573
+ "Column": "IDAuthor",
574
+ "Type": "Integer",
575
+ "Size": "int"
576
+ }
577
+ ],
578
+ "DefaultObject": {
579
+ "IDBookAuthorJoin": 0,
580
+ "GUIDBookAuthorJoin": "0x0000000000000000",
581
+ "IDBook": 0,
582
+ "IDAuthor": 0
583
+ },
584
+ "JsonSchema": {
585
+ "title": "BookAuthorJoin",
586
+ "type": "object",
587
+ "properties": {
588
+ "IDBookAuthorJoin": {
589
+ "type": "integer",
590
+ "size": "Default"
591
+ },
592
+ "GUIDBookAuthorJoin": {
593
+ "type": "string",
594
+ "size": "36"
595
+ },
596
+ "IDBook": {
597
+ "type": "integer",
598
+ "size": "int"
599
+ },
600
+ "IDAuthor": {
601
+ "type": "integer",
602
+ "size": "int"
603
+ }
604
+ },
605
+ "required": [
606
+ "IDBookAuthorJoin"
607
+ ],
608
+ "MeadowSchema": {
609
+ "TableName": "BookAuthorJoin",
610
+ "Domain": "Default",
611
+ "Columns": [
612
+ {
613
+ "Column": "IDBookAuthorJoin",
614
+ "DataType": "ID"
615
+ },
616
+ {
617
+ "Column": "GUIDBookAuthorJoin",
618
+ "DataType": "GUID",
619
+ "Size": "36"
620
+ },
621
+ {
622
+ "Column": "IDBook",
623
+ "DataType": "Numeric",
624
+ "Size": "int",
625
+ "Join": "IDBook"
626
+ },
627
+ {
628
+ "Column": "IDAuthor",
629
+ "DataType": "Numeric",
630
+ "Size": "int",
631
+ "Join": "IDAuthor"
632
+ }
633
+ ],
634
+ "Description": "",
635
+ "MeadowSchema": {
636
+ "Scope": "BookAuthorJoin",
637
+ "DefaultIdentifier": "IDBookAuthorJoin",
638
+ "Domain": "Default",
639
+ "Schema": [
640
+ {
641
+ "Column": "IDBookAuthorJoin",
642
+ "Type": "AutoIdentity",
643
+ "Size": "Default"
644
+ },
645
+ {
646
+ "Column": "GUIDBookAuthorJoin",
647
+ "Type": "AutoGUID",
648
+ "Size": "36"
649
+ },
650
+ {
651
+ "Column": "IDBook",
652
+ "Type": "Integer",
653
+ "Size": "int"
654
+ },
655
+ {
656
+ "Column": "IDAuthor",
657
+ "Type": "Integer",
658
+ "Size": "int"
659
+ }
660
+ ],
661
+ "DefaultObject": {
662
+ "IDBookAuthorJoin": 0,
663
+ "GUIDBookAuthorJoin": "0x0000000000000000",
664
+ "IDBook": 0,
665
+ "IDAuthor": 0
666
+ },
667
+ "JsonSchema": {
668
+ "title": "BookAuthorJoin",
669
+ "type": "object",
670
+ "properties": {
671
+ "IDBookAuthorJoin": {
672
+ "type": "integer",
673
+ "size": "Default"
674
+ },
675
+ "GUIDBookAuthorJoin": {
676
+ "type": "string",
677
+ "size": "36"
678
+ },
679
+ "IDBook": {
680
+ "type": "integer",
681
+ "size": "int"
682
+ },
683
+ "IDAuthor": {
684
+ "type": "integer",
685
+ "size": "int"
686
+ }
687
+ },
688
+ "required": [
689
+ "IDBookAuthorJoin"
690
+ ]
691
+ },
692
+ "Authorization": {}
693
+ }
694
+ }
695
+ },
696
+ "Authorization": {}
697
+ }
698
+ },
699
+ "Author": {
700
+ "TableName": "Author",
701
+ "Domain": "Default",
702
+ "Columns": [
703
+ {
704
+ "Column": "IDAuthor",
705
+ "DataType": "ID"
706
+ },
707
+ {
708
+ "Column": "GUIDAuthor",
709
+ "DataType": "GUID",
710
+ "Size": "36"
711
+ },
712
+ {
713
+ "Column": "CreateDate",
714
+ "DataType": "DateTime"
715
+ },
716
+ {
717
+ "Column": "CreatingIDUser",
718
+ "DataType": "Numeric",
719
+ "Size": "int"
720
+ },
721
+ {
722
+ "Column": "UpdateDate",
723
+ "DataType": "DateTime"
724
+ },
725
+ {
726
+ "Column": "UpdatingIDUser",
727
+ "DataType": "Numeric",
728
+ "Size": "int"
729
+ },
730
+ {
731
+ "Column": "Deleted",
732
+ "DataType": "Boolean"
733
+ },
734
+ {
735
+ "Column": "DeleteDate",
736
+ "DataType": "DateTime"
737
+ },
738
+ {
739
+ "Column": "DeletingIDUser",
740
+ "DataType": "Numeric",
741
+ "Size": "int"
742
+ },
743
+ {
744
+ "Column": "Name",
745
+ "DataType": "String",
746
+ "Size": "200"
747
+ }
748
+ ],
749
+ "Description": "",
750
+ "MeadowSchema": {
751
+ "Scope": "Author",
752
+ "DefaultIdentifier": "IDAuthor",
753
+ "Domain": "Default",
754
+ "Schema": [
755
+ {
756
+ "Column": "IDAuthor",
757
+ "Type": "AutoIdentity",
758
+ "Size": "Default"
759
+ },
760
+ {
761
+ "Column": "GUIDAuthor",
762
+ "Type": "AutoGUID",
763
+ "Size": "36"
764
+ },
765
+ {
766
+ "Column": "CreateDate",
767
+ "Type": "CreateDate",
768
+ "Size": "Default"
769
+ },
770
+ {
771
+ "Column": "CreatingIDUser",
772
+ "Type": "CreateIDUser",
773
+ "Size": "int"
774
+ },
775
+ {
776
+ "Column": "UpdateDate",
777
+ "Type": "UpdateDate",
778
+ "Size": "Default"
779
+ },
780
+ {
781
+ "Column": "UpdatingIDUser",
782
+ "Type": "UpdateIDUser",
783
+ "Size": "int"
784
+ },
785
+ {
786
+ "Column": "Deleted",
787
+ "Type": "Deleted",
788
+ "Size": "Default"
789
+ },
790
+ {
791
+ "Column": "DeleteDate",
792
+ "Type": "DeleteDate",
793
+ "Size": "Default"
794
+ },
795
+ {
796
+ "Column": "DeletingIDUser",
797
+ "Type": "DeleteIDUser",
798
+ "Size": "int"
799
+ },
800
+ {
801
+ "Column": "Name",
802
+ "Type": "String",
803
+ "Size": "200"
804
+ }
805
+ ],
806
+ "DefaultObject": {
807
+ "IDAuthor": 0,
808
+ "GUIDAuthor": "0x0000000000000000",
809
+ "CreateDate": null,
810
+ "CreatingIDUser": 0,
811
+ "UpdateDate": null,
812
+ "UpdatingIDUser": 0,
813
+ "Deleted": false,
814
+ "DeleteDate": null,
815
+ "DeletingIDUser": 0,
816
+ "Name": ""
817
+ },
818
+ "JsonSchema": {
819
+ "title": "Author",
820
+ "type": "object",
821
+ "properties": {
822
+ "IDAuthor": {
823
+ "type": "integer",
824
+ "size": "Default"
825
+ },
826
+ "GUIDAuthor": {
827
+ "type": "string",
828
+ "size": "36"
829
+ },
830
+ "CreateDate": {
831
+ "type": "string",
832
+ "size": "Default"
833
+ },
834
+ "CreatingIDUser": {
835
+ "type": "integer",
836
+ "size": "int"
837
+ },
838
+ "UpdateDate": {
839
+ "type": "string",
840
+ "size": "Default"
841
+ },
842
+ "UpdatingIDUser": {
843
+ "type": "integer",
844
+ "size": "int"
845
+ },
846
+ "Deleted": {
847
+ "type": "boolean",
848
+ "size": "Default"
849
+ },
850
+ "DeleteDate": {
851
+ "type": "string",
852
+ "size": "Default"
853
+ },
854
+ "DeletingIDUser": {
855
+ "type": "integer",
856
+ "size": "int"
857
+ },
858
+ "Name": {
859
+ "type": "string",
860
+ "size": "200"
861
+ }
862
+ },
863
+ "required": [
864
+ "IDAuthor"
865
+ ],
866
+ "MeadowSchema": {
867
+ "TableName": "Author",
868
+ "Domain": "Default",
869
+ "Columns": [
870
+ {
871
+ "Column": "IDAuthor",
872
+ "DataType": "ID"
873
+ },
874
+ {
875
+ "Column": "GUIDAuthor",
876
+ "DataType": "GUID",
877
+ "Size": "36"
878
+ },
879
+ {
880
+ "Column": "CreateDate",
881
+ "DataType": "DateTime"
882
+ },
883
+ {
884
+ "Column": "CreatingIDUser",
885
+ "DataType": "Numeric",
886
+ "Size": "int"
887
+ },
888
+ {
889
+ "Column": "UpdateDate",
890
+ "DataType": "DateTime"
891
+ },
892
+ {
893
+ "Column": "UpdatingIDUser",
894
+ "DataType": "Numeric",
895
+ "Size": "int"
896
+ },
897
+ {
898
+ "Column": "Deleted",
899
+ "DataType": "Boolean"
900
+ },
901
+ {
902
+ "Column": "DeleteDate",
903
+ "DataType": "DateTime"
904
+ },
905
+ {
906
+ "Column": "DeletingIDUser",
907
+ "DataType": "Numeric",
908
+ "Size": "int"
909
+ },
910
+ {
911
+ "Column": "Name",
912
+ "DataType": "String",
913
+ "Size": "200"
914
+ }
915
+ ],
916
+ "Description": "",
917
+ "MeadowSchema": {
918
+ "Scope": "Author",
919
+ "DefaultIdentifier": "IDAuthor",
920
+ "Domain": "Default",
921
+ "Schema": [
922
+ {
923
+ "Column": "IDAuthor",
924
+ "Type": "AutoIdentity",
925
+ "Size": "Default"
926
+ },
927
+ {
928
+ "Column": "GUIDAuthor",
929
+ "Type": "AutoGUID",
930
+ "Size": "36"
931
+ },
932
+ {
933
+ "Column": "CreateDate",
934
+ "Type": "CreateDate",
935
+ "Size": "Default"
936
+ },
937
+ {
938
+ "Column": "CreatingIDUser",
939
+ "Type": "CreateIDUser",
940
+ "Size": "int"
941
+ },
942
+ {
943
+ "Column": "UpdateDate",
944
+ "Type": "UpdateDate",
945
+ "Size": "Default"
946
+ },
947
+ {
948
+ "Column": "UpdatingIDUser",
949
+ "Type": "UpdateIDUser",
950
+ "Size": "int"
951
+ },
952
+ {
953
+ "Column": "Deleted",
954
+ "Type": "Deleted",
955
+ "Size": "Default"
956
+ },
957
+ {
958
+ "Column": "DeleteDate",
959
+ "Type": "DeleteDate",
960
+ "Size": "Default"
961
+ },
962
+ {
963
+ "Column": "DeletingIDUser",
964
+ "Type": "DeleteIDUser",
965
+ "Size": "int"
966
+ },
967
+ {
968
+ "Column": "Name",
969
+ "Type": "String",
970
+ "Size": "200"
971
+ }
972
+ ],
973
+ "DefaultObject": {
974
+ "IDAuthor": 0,
975
+ "GUIDAuthor": "0x0000000000000000",
976
+ "CreateDate": null,
977
+ "CreatingIDUser": 0,
978
+ "UpdateDate": null,
979
+ "UpdatingIDUser": 0,
980
+ "Deleted": false,
981
+ "DeleteDate": null,
982
+ "DeletingIDUser": 0,
983
+ "Name": ""
984
+ },
985
+ "JsonSchema": {
986
+ "title": "Author",
987
+ "type": "object",
988
+ "properties": {
989
+ "IDAuthor": {
990
+ "type": "integer",
991
+ "size": "Default"
992
+ },
993
+ "GUIDAuthor": {
994
+ "type": "string",
995
+ "size": "36"
996
+ },
997
+ "CreateDate": {
998
+ "type": "string",
999
+ "size": "Default"
1000
+ },
1001
+ "CreatingIDUser": {
1002
+ "type": "integer",
1003
+ "size": "int"
1004
+ },
1005
+ "UpdateDate": {
1006
+ "type": "string",
1007
+ "size": "Default"
1008
+ },
1009
+ "UpdatingIDUser": {
1010
+ "type": "integer",
1011
+ "size": "int"
1012
+ },
1013
+ "Deleted": {
1014
+ "type": "boolean",
1015
+ "size": "Default"
1016
+ },
1017
+ "DeleteDate": {
1018
+ "type": "string",
1019
+ "size": "Default"
1020
+ },
1021
+ "DeletingIDUser": {
1022
+ "type": "integer",
1023
+ "size": "int"
1024
+ },
1025
+ "Name": {
1026
+ "type": "string",
1027
+ "size": "200"
1028
+ }
1029
+ },
1030
+ "required": [
1031
+ "IDAuthor"
1032
+ ]
1033
+ },
1034
+ "Authorization": {}
1035
+ }
1036
+ }
1037
+ },
1038
+ "Authorization": {}
1039
+ }
1040
+ },
1041
+ "BookPrice": {
1042
+ "TableName": "BookPrice",
1043
+ "Domain": "Default",
1044
+ "Columns": [
1045
+ {
1046
+ "Column": "IDBookPrice",
1047
+ "DataType": "ID"
1048
+ },
1049
+ {
1050
+ "Column": "GUIDBookPrice",
1051
+ "DataType": "GUID",
1052
+ "Size": "36"
1053
+ },
1054
+ {
1055
+ "Column": "CreateDate",
1056
+ "DataType": "DateTime"
1057
+ },
1058
+ {
1059
+ "Column": "CreatingIDUser",
1060
+ "DataType": "Numeric",
1061
+ "Size": "int"
1062
+ },
1063
+ {
1064
+ "Column": "UpdateDate",
1065
+ "DataType": "DateTime"
1066
+ },
1067
+ {
1068
+ "Column": "UpdatingIDUser",
1069
+ "DataType": "Numeric",
1070
+ "Size": "int"
1071
+ },
1072
+ {
1073
+ "Column": "Deleted",
1074
+ "DataType": "Boolean"
1075
+ },
1076
+ {
1077
+ "Column": "DeleteDate",
1078
+ "DataType": "DateTime"
1079
+ },
1080
+ {
1081
+ "Column": "DeletingIDUser",
1082
+ "DataType": "Numeric",
1083
+ "Size": "int"
1084
+ },
1085
+ {
1086
+ "Column": "Price",
1087
+ "DataType": "Decimal",
1088
+ "Size": "8,2"
1089
+ },
1090
+ {
1091
+ "Column": "StartDate",
1092
+ "DataType": "DateTime"
1093
+ },
1094
+ {
1095
+ "Column": "EndDate",
1096
+ "DataType": "DateTime"
1097
+ },
1098
+ {
1099
+ "Column": "Discountable",
1100
+ "DataType": "Boolean"
1101
+ },
1102
+ {
1103
+ "Column": "CouponCode",
1104
+ "DataType": "String",
1105
+ "Size": "16"
1106
+ },
1107
+ {
1108
+ "Column": "IDBook",
1109
+ "DataType": "Numeric",
1110
+ "Size": "int",
1111
+ "Join": "IDBook"
1112
+ }
1113
+ ],
1114
+ "Description": "",
1115
+ "MeadowSchema": {
1116
+ "Scope": "BookPrice",
1117
+ "DefaultIdentifier": "IDBookPrice",
1118
+ "Domain": "Default",
1119
+ "Schema": [
1120
+ {
1121
+ "Column": "IDBookPrice",
1122
+ "Type": "AutoIdentity",
1123
+ "Size": "Default"
1124
+ },
1125
+ {
1126
+ "Column": "GUIDBookPrice",
1127
+ "Type": "AutoGUID",
1128
+ "Size": "36"
1129
+ },
1130
+ {
1131
+ "Column": "CreateDate",
1132
+ "Type": "CreateDate",
1133
+ "Size": "Default"
1134
+ },
1135
+ {
1136
+ "Column": "CreatingIDUser",
1137
+ "Type": "CreateIDUser",
1138
+ "Size": "int"
1139
+ },
1140
+ {
1141
+ "Column": "UpdateDate",
1142
+ "Type": "UpdateDate",
1143
+ "Size": "Default"
1144
+ },
1145
+ {
1146
+ "Column": "UpdatingIDUser",
1147
+ "Type": "UpdateIDUser",
1148
+ "Size": "int"
1149
+ },
1150
+ {
1151
+ "Column": "Deleted",
1152
+ "Type": "Deleted",
1153
+ "Size": "Default"
1154
+ },
1155
+ {
1156
+ "Column": "DeleteDate",
1157
+ "Type": "DeleteDate",
1158
+ "Size": "Default"
1159
+ },
1160
+ {
1161
+ "Column": "DeletingIDUser",
1162
+ "Type": "DeleteIDUser",
1163
+ "Size": "int"
1164
+ },
1165
+ {
1166
+ "Column": "Price",
1167
+ "Type": "Decimal",
1168
+ "Size": "8,2"
1169
+ },
1170
+ {
1171
+ "Column": "StartDate",
1172
+ "Type": "DateTime",
1173
+ "Size": "Default"
1174
+ },
1175
+ {
1176
+ "Column": "EndDate",
1177
+ "Type": "DateTime",
1178
+ "Size": "Default"
1179
+ },
1180
+ {
1181
+ "Column": "Discountable",
1182
+ "Type": "Boolean",
1183
+ "Size": "Default"
1184
+ },
1185
+ {
1186
+ "Column": "CouponCode",
1187
+ "Type": "String",
1188
+ "Size": "16"
1189
+ },
1190
+ {
1191
+ "Column": "IDBook",
1192
+ "Type": "Integer",
1193
+ "Size": "int"
1194
+ }
1195
+ ],
1196
+ "DefaultObject": {
1197
+ "IDBookPrice": 0,
1198
+ "GUIDBookPrice": "0x0000000000000000",
1199
+ "CreateDate": null,
1200
+ "CreatingIDUser": 0,
1201
+ "UpdateDate": null,
1202
+ "UpdatingIDUser": 0,
1203
+ "Deleted": false,
1204
+ "DeleteDate": null,
1205
+ "DeletingIDUser": 0,
1206
+ "Price": 0,
1207
+ "StartDate": null,
1208
+ "EndDate": null,
1209
+ "Discountable": false,
1210
+ "CouponCode": "",
1211
+ "IDBook": 0
1212
+ },
1213
+ "JsonSchema": {
1214
+ "title": "BookPrice",
1215
+ "type": "object",
1216
+ "properties": {
1217
+ "IDBookPrice": {
1218
+ "type": "integer",
1219
+ "size": "Default"
1220
+ },
1221
+ "GUIDBookPrice": {
1222
+ "type": "string",
1223
+ "size": "36"
1224
+ },
1225
+ "CreateDate": {
1226
+ "type": "string",
1227
+ "size": "Default"
1228
+ },
1229
+ "CreatingIDUser": {
1230
+ "type": "integer",
1231
+ "size": "int"
1232
+ },
1233
+ "UpdateDate": {
1234
+ "type": "string",
1235
+ "size": "Default"
1236
+ },
1237
+ "UpdatingIDUser": {
1238
+ "type": "integer",
1239
+ "size": "int"
1240
+ },
1241
+ "Deleted": {
1242
+ "type": "boolean",
1243
+ "size": "Default"
1244
+ },
1245
+ "DeleteDate": {
1246
+ "type": "string",
1247
+ "size": "Default"
1248
+ },
1249
+ "DeletingIDUser": {
1250
+ "type": "integer",
1251
+ "size": "int"
1252
+ },
1253
+ "Price": {
1254
+ "type": "number",
1255
+ "size": "8,2"
1256
+ },
1257
+ "StartDate": {
1258
+ "type": "string",
1259
+ "size": "Default"
1260
+ },
1261
+ "EndDate": {
1262
+ "type": "string",
1263
+ "size": "Default"
1264
+ },
1265
+ "Discountable": {
1266
+ "type": "boolean",
1267
+ "size": "Default"
1268
+ },
1269
+ "CouponCode": {
1270
+ "type": "string",
1271
+ "size": "16"
1272
+ },
1273
+ "IDBook": {
1274
+ "type": "integer",
1275
+ "size": "int"
1276
+ }
1277
+ },
1278
+ "required": [
1279
+ "IDBookPrice"
1280
+ ],
1281
+ "MeadowSchema": {
1282
+ "TableName": "BookPrice",
1283
+ "Domain": "Default",
1284
+ "Columns": [
1285
+ {
1286
+ "Column": "IDBookPrice",
1287
+ "DataType": "ID"
1288
+ },
1289
+ {
1290
+ "Column": "GUIDBookPrice",
1291
+ "DataType": "GUID",
1292
+ "Size": "36"
1293
+ },
1294
+ {
1295
+ "Column": "CreateDate",
1296
+ "DataType": "DateTime"
1297
+ },
1298
+ {
1299
+ "Column": "CreatingIDUser",
1300
+ "DataType": "Numeric",
1301
+ "Size": "int"
1302
+ },
1303
+ {
1304
+ "Column": "UpdateDate",
1305
+ "DataType": "DateTime"
1306
+ },
1307
+ {
1308
+ "Column": "UpdatingIDUser",
1309
+ "DataType": "Numeric",
1310
+ "Size": "int"
1311
+ },
1312
+ {
1313
+ "Column": "Deleted",
1314
+ "DataType": "Boolean"
1315
+ },
1316
+ {
1317
+ "Column": "DeleteDate",
1318
+ "DataType": "DateTime"
1319
+ },
1320
+ {
1321
+ "Column": "DeletingIDUser",
1322
+ "DataType": "Numeric",
1323
+ "Size": "int"
1324
+ },
1325
+ {
1326
+ "Column": "Price",
1327
+ "DataType": "Decimal",
1328
+ "Size": "8,2"
1329
+ },
1330
+ {
1331
+ "Column": "StartDate",
1332
+ "DataType": "DateTime"
1333
+ },
1334
+ {
1335
+ "Column": "EndDate",
1336
+ "DataType": "DateTime"
1337
+ },
1338
+ {
1339
+ "Column": "Discountable",
1340
+ "DataType": "Boolean"
1341
+ },
1342
+ {
1343
+ "Column": "CouponCode",
1344
+ "DataType": "String",
1345
+ "Size": "16"
1346
+ },
1347
+ {
1348
+ "Column": "IDBook",
1349
+ "DataType": "Numeric",
1350
+ "Size": "int",
1351
+ "Join": "IDBook"
1352
+ }
1353
+ ],
1354
+ "Description": "",
1355
+ "MeadowSchema": {
1356
+ "Scope": "BookPrice",
1357
+ "DefaultIdentifier": "IDBookPrice",
1358
+ "Domain": "Default",
1359
+ "Schema": [
1360
+ {
1361
+ "Column": "IDBookPrice",
1362
+ "Type": "AutoIdentity",
1363
+ "Size": "Default"
1364
+ },
1365
+ {
1366
+ "Column": "GUIDBookPrice",
1367
+ "Type": "AutoGUID",
1368
+ "Size": "36"
1369
+ },
1370
+ {
1371
+ "Column": "CreateDate",
1372
+ "Type": "CreateDate",
1373
+ "Size": "Default"
1374
+ },
1375
+ {
1376
+ "Column": "CreatingIDUser",
1377
+ "Type": "CreateIDUser",
1378
+ "Size": "int"
1379
+ },
1380
+ {
1381
+ "Column": "UpdateDate",
1382
+ "Type": "UpdateDate",
1383
+ "Size": "Default"
1384
+ },
1385
+ {
1386
+ "Column": "UpdatingIDUser",
1387
+ "Type": "UpdateIDUser",
1388
+ "Size": "int"
1389
+ },
1390
+ {
1391
+ "Column": "Deleted",
1392
+ "Type": "Deleted",
1393
+ "Size": "Default"
1394
+ },
1395
+ {
1396
+ "Column": "DeleteDate",
1397
+ "Type": "DeleteDate",
1398
+ "Size": "Default"
1399
+ },
1400
+ {
1401
+ "Column": "DeletingIDUser",
1402
+ "Type": "DeleteIDUser",
1403
+ "Size": "int"
1404
+ },
1405
+ {
1406
+ "Column": "Price",
1407
+ "Type": "Decimal",
1408
+ "Size": "8,2"
1409
+ },
1410
+ {
1411
+ "Column": "StartDate",
1412
+ "Type": "DateTime",
1413
+ "Size": "Default"
1414
+ },
1415
+ {
1416
+ "Column": "EndDate",
1417
+ "Type": "DateTime",
1418
+ "Size": "Default"
1419
+ },
1420
+ {
1421
+ "Column": "Discountable",
1422
+ "Type": "Boolean",
1423
+ "Size": "Default"
1424
+ },
1425
+ {
1426
+ "Column": "CouponCode",
1427
+ "Type": "String",
1428
+ "Size": "16"
1429
+ },
1430
+ {
1431
+ "Column": "IDBook",
1432
+ "Type": "Integer",
1433
+ "Size": "int"
1434
+ }
1435
+ ],
1436
+ "DefaultObject": {
1437
+ "IDBookPrice": 0,
1438
+ "GUIDBookPrice": "0x0000000000000000",
1439
+ "CreateDate": null,
1440
+ "CreatingIDUser": 0,
1441
+ "UpdateDate": null,
1442
+ "UpdatingIDUser": 0,
1443
+ "Deleted": false,
1444
+ "DeleteDate": null,
1445
+ "DeletingIDUser": 0,
1446
+ "Price": 0,
1447
+ "StartDate": null,
1448
+ "EndDate": null,
1449
+ "Discountable": false,
1450
+ "CouponCode": "",
1451
+ "IDBook": 0
1452
+ },
1453
+ "JsonSchema": {
1454
+ "title": "BookPrice",
1455
+ "type": "object",
1456
+ "properties": {
1457
+ "IDBookPrice": {
1458
+ "type": "integer",
1459
+ "size": "Default"
1460
+ },
1461
+ "GUIDBookPrice": {
1462
+ "type": "string",
1463
+ "size": "36"
1464
+ },
1465
+ "CreateDate": {
1466
+ "type": "string",
1467
+ "size": "Default"
1468
+ },
1469
+ "CreatingIDUser": {
1470
+ "type": "integer",
1471
+ "size": "int"
1472
+ },
1473
+ "UpdateDate": {
1474
+ "type": "string",
1475
+ "size": "Default"
1476
+ },
1477
+ "UpdatingIDUser": {
1478
+ "type": "integer",
1479
+ "size": "int"
1480
+ },
1481
+ "Deleted": {
1482
+ "type": "boolean",
1483
+ "size": "Default"
1484
+ },
1485
+ "DeleteDate": {
1486
+ "type": "string",
1487
+ "size": "Default"
1488
+ },
1489
+ "DeletingIDUser": {
1490
+ "type": "integer",
1491
+ "size": "int"
1492
+ },
1493
+ "Price": {
1494
+ "type": "number",
1495
+ "size": "8,2"
1496
+ },
1497
+ "StartDate": {
1498
+ "type": "string",
1499
+ "size": "Default"
1500
+ },
1501
+ "EndDate": {
1502
+ "type": "string",
1503
+ "size": "Default"
1504
+ },
1505
+ "Discountable": {
1506
+ "type": "boolean",
1507
+ "size": "Default"
1508
+ },
1509
+ "CouponCode": {
1510
+ "type": "string",
1511
+ "size": "16"
1512
+ },
1513
+ "IDBook": {
1514
+ "type": "integer",
1515
+ "size": "int"
1516
+ }
1517
+ },
1518
+ "required": [
1519
+ "IDBookPrice"
1520
+ ]
1521
+ },
1522
+ "Authorization": {}
1523
+ }
1524
+ }
1525
+ },
1526
+ "Authorization": {}
1527
+ }
1528
+ },
1529
+ "Review": {
1530
+ "TableName": "Review",
1531
+ "Domain": "Default",
1532
+ "Columns": [
1533
+ {
1534
+ "Column": "IDReviews",
1535
+ "DataType": "ID"
1536
+ },
1537
+ {
1538
+ "Column": "GUIDReviews",
1539
+ "DataType": "GUID",
1540
+ "Size": "36"
1541
+ },
1542
+ {
1543
+ "Column": "CreateDate",
1544
+ "DataType": "DateTime"
1545
+ },
1546
+ {
1547
+ "Column": "CreatingIDUser",
1548
+ "DataType": "Numeric",
1549
+ "Size": "int"
1550
+ },
1551
+ {
1552
+ "Column": "UpdateDate",
1553
+ "DataType": "DateTime"
1554
+ },
1555
+ {
1556
+ "Column": "UpdatingIDUser",
1557
+ "DataType": "Numeric",
1558
+ "Size": "int"
1559
+ },
1560
+ {
1561
+ "Column": "Deleted",
1562
+ "DataType": "Boolean"
1563
+ },
1564
+ {
1565
+ "Column": "DeleteDate",
1566
+ "DataType": "DateTime"
1567
+ },
1568
+ {
1569
+ "Column": "DeletingIDUser",
1570
+ "DataType": "Numeric",
1571
+ "Size": "int"
1572
+ },
1573
+ {
1574
+ "Column": "Text",
1575
+ "DataType": "Text"
1576
+ },
1577
+ {
1578
+ "Column": "Rating",
1579
+ "DataType": "Numeric",
1580
+ "Size": "int"
1581
+ },
1582
+ {
1583
+ "Column": "IDBook",
1584
+ "DataType": "Numeric",
1585
+ "Size": "int",
1586
+ "Join": "IDBook"
1587
+ }
1588
+ ],
1589
+ "Description": "",
1590
+ "MeadowSchema": {
1591
+ "Scope": "Review",
1592
+ "DefaultIdentifier": "IDReviews",
1593
+ "Domain": "Default",
1594
+ "Schema": [
1595
+ {
1596
+ "Column": "IDReviews",
1597
+ "Type": "AutoIdentity",
1598
+ "Size": "Default"
1599
+ },
1600
+ {
1601
+ "Column": "GUIDReviews",
1602
+ "Type": "AutoGUID",
1603
+ "Size": "36"
1604
+ },
1605
+ {
1606
+ "Column": "CreateDate",
1607
+ "Type": "CreateDate",
1608
+ "Size": "Default"
1609
+ },
1610
+ {
1611
+ "Column": "CreatingIDUser",
1612
+ "Type": "CreateIDUser",
1613
+ "Size": "int"
1614
+ },
1615
+ {
1616
+ "Column": "UpdateDate",
1617
+ "Type": "UpdateDate",
1618
+ "Size": "Default"
1619
+ },
1620
+ {
1621
+ "Column": "UpdatingIDUser",
1622
+ "Type": "UpdateIDUser",
1623
+ "Size": "int"
1624
+ },
1625
+ {
1626
+ "Column": "Deleted",
1627
+ "Type": "Deleted",
1628
+ "Size": "Default"
1629
+ },
1630
+ {
1631
+ "Column": "DeleteDate",
1632
+ "Type": "DeleteDate",
1633
+ "Size": "Default"
1634
+ },
1635
+ {
1636
+ "Column": "DeletingIDUser",
1637
+ "Type": "DeleteIDUser",
1638
+ "Size": "int"
1639
+ },
1640
+ {
1641
+ "Column": "Text",
1642
+ "Type": "String",
1643
+ "Size": "Default"
1644
+ },
1645
+ {
1646
+ "Column": "Rating",
1647
+ "Type": "Integer",
1648
+ "Size": "int"
1649
+ },
1650
+ {
1651
+ "Column": "IDBook",
1652
+ "Type": "Integer",
1653
+ "Size": "int"
1654
+ }
1655
+ ],
1656
+ "DefaultObject": {
1657
+ "IDReviews": 0,
1658
+ "GUIDReviews": "0x0000000000000000",
1659
+ "CreateDate": null,
1660
+ "CreatingIDUser": 0,
1661
+ "UpdateDate": null,
1662
+ "UpdatingIDUser": 0,
1663
+ "Deleted": false,
1664
+ "DeleteDate": null,
1665
+ "DeletingIDUser": 0,
1666
+ "Text": "",
1667
+ "Rating": 0,
1668
+ "IDBook": 0
1669
+ },
1670
+ "JsonSchema": {
1671
+ "title": "Review",
1672
+ "type": "object",
1673
+ "properties": {
1674
+ "IDReviews": {
1675
+ "type": "integer",
1676
+ "size": "Default"
1677
+ },
1678
+ "GUIDReviews": {
1679
+ "type": "string",
1680
+ "size": "36"
1681
+ },
1682
+ "CreateDate": {
1683
+ "type": "string",
1684
+ "size": "Default"
1685
+ },
1686
+ "CreatingIDUser": {
1687
+ "type": "integer",
1688
+ "size": "int"
1689
+ },
1690
+ "UpdateDate": {
1691
+ "type": "string",
1692
+ "size": "Default"
1693
+ },
1694
+ "UpdatingIDUser": {
1695
+ "type": "integer",
1696
+ "size": "int"
1697
+ },
1698
+ "Deleted": {
1699
+ "type": "boolean",
1700
+ "size": "Default"
1701
+ },
1702
+ "DeleteDate": {
1703
+ "type": "string",
1704
+ "size": "Default"
1705
+ },
1706
+ "DeletingIDUser": {
1707
+ "type": "integer",
1708
+ "size": "int"
1709
+ },
1710
+ "Text": {
1711
+ "type": "string",
1712
+ "size": "Default"
1713
+ },
1714
+ "Rating": {
1715
+ "type": "integer",
1716
+ "size": "int"
1717
+ },
1718
+ "IDBook": {
1719
+ "type": "integer",
1720
+ "size": "int"
1721
+ }
1722
+ },
1723
+ "required": [
1724
+ "IDReviews"
1725
+ ],
1726
+ "MeadowSchema": {
1727
+ "TableName": "Review",
1728
+ "Domain": "Default",
1729
+ "Columns": [
1730
+ {
1731
+ "Column": "IDReviews",
1732
+ "DataType": "ID"
1733
+ },
1734
+ {
1735
+ "Column": "GUIDReviews",
1736
+ "DataType": "GUID",
1737
+ "Size": "36"
1738
+ },
1739
+ {
1740
+ "Column": "CreateDate",
1741
+ "DataType": "DateTime"
1742
+ },
1743
+ {
1744
+ "Column": "CreatingIDUser",
1745
+ "DataType": "Numeric",
1746
+ "Size": "int"
1747
+ },
1748
+ {
1749
+ "Column": "UpdateDate",
1750
+ "DataType": "DateTime"
1751
+ },
1752
+ {
1753
+ "Column": "UpdatingIDUser",
1754
+ "DataType": "Numeric",
1755
+ "Size": "int"
1756
+ },
1757
+ {
1758
+ "Column": "Deleted",
1759
+ "DataType": "Boolean"
1760
+ },
1761
+ {
1762
+ "Column": "DeleteDate",
1763
+ "DataType": "DateTime"
1764
+ },
1765
+ {
1766
+ "Column": "DeletingIDUser",
1767
+ "DataType": "Numeric",
1768
+ "Size": "int"
1769
+ },
1770
+ {
1771
+ "Column": "Text",
1772
+ "DataType": "Text"
1773
+ },
1774
+ {
1775
+ "Column": "Rating",
1776
+ "DataType": "Numeric",
1777
+ "Size": "int"
1778
+ },
1779
+ {
1780
+ "Column": "IDBook",
1781
+ "DataType": "Numeric",
1782
+ "Size": "int",
1783
+ "Join": "IDBook"
1784
+ }
1785
+ ],
1786
+ "Description": "",
1787
+ "MeadowSchema": {
1788
+ "Scope": "Review",
1789
+ "DefaultIdentifier": "IDReviews",
1790
+ "Domain": "Default",
1791
+ "Schema": [
1792
+ {
1793
+ "Column": "IDReviews",
1794
+ "Type": "AutoIdentity",
1795
+ "Size": "Default"
1796
+ },
1797
+ {
1798
+ "Column": "GUIDReviews",
1799
+ "Type": "AutoGUID",
1800
+ "Size": "36"
1801
+ },
1802
+ {
1803
+ "Column": "CreateDate",
1804
+ "Type": "CreateDate",
1805
+ "Size": "Default"
1806
+ },
1807
+ {
1808
+ "Column": "CreatingIDUser",
1809
+ "Type": "CreateIDUser",
1810
+ "Size": "int"
1811
+ },
1812
+ {
1813
+ "Column": "UpdateDate",
1814
+ "Type": "UpdateDate",
1815
+ "Size": "Default"
1816
+ },
1817
+ {
1818
+ "Column": "UpdatingIDUser",
1819
+ "Type": "UpdateIDUser",
1820
+ "Size": "int"
1821
+ },
1822
+ {
1823
+ "Column": "Deleted",
1824
+ "Type": "Deleted",
1825
+ "Size": "Default"
1826
+ },
1827
+ {
1828
+ "Column": "DeleteDate",
1829
+ "Type": "DeleteDate",
1830
+ "Size": "Default"
1831
+ },
1832
+ {
1833
+ "Column": "DeletingIDUser",
1834
+ "Type": "DeleteIDUser",
1835
+ "Size": "int"
1836
+ },
1837
+ {
1838
+ "Column": "Text",
1839
+ "Type": "String",
1840
+ "Size": "Default"
1841
+ },
1842
+ {
1843
+ "Column": "Rating",
1844
+ "Type": "Integer",
1845
+ "Size": "int"
1846
+ },
1847
+ {
1848
+ "Column": "IDBook",
1849
+ "Type": "Integer",
1850
+ "Size": "int"
1851
+ }
1852
+ ],
1853
+ "DefaultObject": {
1854
+ "IDReviews": 0,
1855
+ "GUIDReviews": "0x0000000000000000",
1856
+ "CreateDate": null,
1857
+ "CreatingIDUser": 0,
1858
+ "UpdateDate": null,
1859
+ "UpdatingIDUser": 0,
1860
+ "Deleted": false,
1861
+ "DeleteDate": null,
1862
+ "DeletingIDUser": 0,
1863
+ "Text": "",
1864
+ "Rating": 0,
1865
+ "IDBook": 0
1866
+ },
1867
+ "JsonSchema": {
1868
+ "title": "Review",
1869
+ "type": "object",
1870
+ "properties": {
1871
+ "IDReviews": {
1872
+ "type": "integer",
1873
+ "size": "Default"
1874
+ },
1875
+ "GUIDReviews": {
1876
+ "type": "string",
1877
+ "size": "36"
1878
+ },
1879
+ "CreateDate": {
1880
+ "type": "string",
1881
+ "size": "Default"
1882
+ },
1883
+ "CreatingIDUser": {
1884
+ "type": "integer",
1885
+ "size": "int"
1886
+ },
1887
+ "UpdateDate": {
1888
+ "type": "string",
1889
+ "size": "Default"
1890
+ },
1891
+ "UpdatingIDUser": {
1892
+ "type": "integer",
1893
+ "size": "int"
1894
+ },
1895
+ "Deleted": {
1896
+ "type": "boolean",
1897
+ "size": "Default"
1898
+ },
1899
+ "DeleteDate": {
1900
+ "type": "string",
1901
+ "size": "Default"
1902
+ },
1903
+ "DeletingIDUser": {
1904
+ "type": "integer",
1905
+ "size": "int"
1906
+ },
1907
+ "Text": {
1908
+ "type": "string",
1909
+ "size": "Default"
1910
+ },
1911
+ "Rating": {
1912
+ "type": "integer",
1913
+ "size": "int"
1914
+ },
1915
+ "IDBook": {
1916
+ "type": "integer",
1917
+ "size": "int"
1918
+ }
1919
+ },
1920
+ "required": [
1921
+ "IDReviews"
1922
+ ]
1923
+ },
1924
+ "Authorization": {}
1925
+ }
1926
+ }
1927
+ },
1928
+ "Authorization": {}
1929
+ }
1930
+ }
1931
+ },
1932
+ "TablesSequence": [
1933
+ "Book",
1934
+ "BookAuthorJoin",
1935
+ "Author",
1936
+ "BookPrice",
1937
+ "Review"
1938
+ ],
1939
+ "Authorization": {
1940
+ "Book": {
1941
+ "__DefaultAPISecurity": {
1942
+ "Create": "Deny",
1943
+ "Read": "Deny",
1944
+ "Reads": "Deny",
1945
+ "ReadsBy": "Deny",
1946
+ "ReadMax": "Deny",
1947
+ "ReadSelectList": "Deny",
1948
+ "Update": "Deny",
1949
+ "Delete": "Deny",
1950
+ "Count": "Deny",
1951
+ "CountBy": "Deny",
1952
+ "Schema": "Deny",
1953
+ "Validate": "Deny",
1954
+ "New": "Deny"
1955
+ },
1956
+ "Unauthenticated": {
1957
+ "Create": "Deny",
1958
+ "Read": "Deny",
1959
+ "Reads": "Deny",
1960
+ "ReadsBy": "Deny",
1961
+ "ReadMax": "Deny",
1962
+ "ReadSelectList": "Deny",
1963
+ "Update": "Deny",
1964
+ "Delete": "Deny",
1965
+ "Count": "Deny",
1966
+ "CountBy": "Deny",
1967
+ "Schema": "Deny",
1968
+ "Validate": "Deny",
1969
+ "New": "Deny"
1970
+ },
1971
+ "Readonly": {
1972
+ "Create": "Deny",
1973
+ "Read": "Allow",
1974
+ "Reads": "Allow",
1975
+ "ReadsBy": "Allow",
1976
+ "ReadMax": "Allow",
1977
+ "ReadSelectList": "Allow",
1978
+ "Update": "Deny",
1979
+ "Delete": "Deny",
1980
+ "Count": "Allow",
1981
+ "CountBy": "Allow",
1982
+ "Schema": "Allow",
1983
+ "Validate": "Allow",
1984
+ "New": "Deny"
1985
+ },
1986
+ "User": {
1987
+ "Create": "Allow",
1988
+ "Read": "MyCustomer",
1989
+ "Reads": "MyCustomer",
1990
+ "ReadsBy": "MyCustomer",
1991
+ "ReadMax": "MyCustomer",
1992
+ "ReadSelectList": "MyCustomer",
1993
+ "Update": "Mine",
1994
+ "Delete": "Mine",
1995
+ "Count": "MyCustomer",
1996
+ "CountBy": "MyCustomer",
1997
+ "Schema": "MyCustomer",
1998
+ "Validate": "MyCustomer",
1999
+ "New": "MyCustomer"
2000
+ },
2001
+ "Manager": {
2002
+ "Create": "Allow",
2003
+ "Read": "MyCustomer",
2004
+ "Reads": "MyCustomer",
2005
+ "ReadsBy": "MyCustomer",
2006
+ "ReadMax": "MyCustomer",
2007
+ "ReadSelectList": "MyCustomer",
2008
+ "Update": "Mine",
2009
+ "Delete": "Mine",
2010
+ "Count": "MyCustomer",
2011
+ "CountBy": "MyCustomer",
2012
+ "Schema": "MyCustomer",
2013
+ "Validate": "MyCustomer",
2014
+ "New": "MyCustomer"
2015
+ },
2016
+ "Director": {
2017
+ "Create": "Allow",
2018
+ "Read": "MyCustomer",
2019
+ "Reads": "MyCustomer",
2020
+ "ReadsBy": "MyCustomer",
2021
+ "ReadMax": "MyCustomer",
2022
+ "ReadSelectList": "MyCustomer",
2023
+ "Update": "MyCustomer",
2024
+ "Delete": "MyCustomer",
2025
+ "Count": "MyCustomer",
2026
+ "CountBy": "MyCustomer",
2027
+ "Schema": "MyCustomer",
2028
+ "Validate": "MyCustomer",
2029
+ "New": "MyCustomer"
2030
+ },
2031
+ "Executive": {
2032
+ "Create": "Allow",
2033
+ "Read": "MyCustomer",
2034
+ "Reads": "MyCustomer",
2035
+ "ReadsBy": "MyCustomer",
2036
+ "ReadMax": "MyCustomer",
2037
+ "ReadSelectList": "MyCustomer",
2038
+ "Update": "MyCustomer",
2039
+ "Delete": "MyCustomer",
2040
+ "Count": "MyCustomer",
2041
+ "CountBy": "MyCustomer",
2042
+ "Schema": "MyCustomer",
2043
+ "Validate": "MyCustomer",
2044
+ "New": "MyCustomer"
2045
+ },
2046
+ "Administrator": {
2047
+ "Create": "Allow",
2048
+ "Read": "Allow",
2049
+ "Reads": "Allow",
2050
+ "ReadsBy": "Allow",
2051
+ "ReadMax": "Allow",
2052
+ "ReadSelectList": "Allow",
2053
+ "Update": "Allow",
2054
+ "Delete": "Allow",
2055
+ "Count": "Allow",
2056
+ "CountBy": "Allow",
2057
+ "Schema": "Allow",
2058
+ "Validate": "Allow",
2059
+ "New": "Allow"
2060
+ }
2061
+ },
2062
+ "BookAuthorJoin": {
2063
+ "__DefaultAPISecurity": {
2064
+ "Create": "Deny",
2065
+ "Read": "Deny",
2066
+ "Reads": "Deny",
2067
+ "ReadsBy": "Deny",
2068
+ "ReadMax": "Deny",
2069
+ "ReadSelectList": "Deny",
2070
+ "Update": "Deny",
2071
+ "Delete": "Deny",
2072
+ "Count": "Deny",
2073
+ "CountBy": "Deny",
2074
+ "Schema": "Deny",
2075
+ "Validate": "Deny",
2076
+ "New": "Deny"
2077
+ },
2078
+ "Unauthenticated": {
2079
+ "Create": "Deny",
2080
+ "Read": "Deny",
2081
+ "Reads": "Deny",
2082
+ "ReadsBy": "Deny",
2083
+ "ReadMax": "Deny",
2084
+ "ReadSelectList": "Deny",
2085
+ "Update": "Deny",
2086
+ "Delete": "Deny",
2087
+ "Count": "Deny",
2088
+ "CountBy": "Deny",
2089
+ "Schema": "Deny",
2090
+ "Validate": "Deny",
2091
+ "New": "Deny"
2092
+ },
2093
+ "Readonly": {
2094
+ "Create": "Deny",
2095
+ "Read": "Allow",
2096
+ "Reads": "Allow",
2097
+ "ReadsBy": "Allow",
2098
+ "ReadMax": "Allow",
2099
+ "ReadSelectList": "Allow",
2100
+ "Update": "Deny",
2101
+ "Delete": "Deny",
2102
+ "Count": "Allow",
2103
+ "CountBy": "Allow",
2104
+ "Schema": "Allow",
2105
+ "Validate": "Allow",
2106
+ "New": "Deny"
2107
+ },
2108
+ "User": {
2109
+ "Create": "Allow",
2110
+ "Read": "MyCustomer",
2111
+ "Reads": "MyCustomer",
2112
+ "ReadsBy": "MyCustomer",
2113
+ "ReadMax": "MyCustomer",
2114
+ "ReadSelectList": "MyCustomer",
2115
+ "Update": "Mine",
2116
+ "Delete": "Mine",
2117
+ "Count": "MyCustomer",
2118
+ "CountBy": "MyCustomer",
2119
+ "Schema": "MyCustomer",
2120
+ "Validate": "MyCustomer",
2121
+ "New": "MyCustomer"
2122
+ },
2123
+ "Manager": {
2124
+ "Create": "Allow",
2125
+ "Read": "MyCustomer",
2126
+ "Reads": "MyCustomer",
2127
+ "ReadsBy": "MyCustomer",
2128
+ "ReadMax": "MyCustomer",
2129
+ "ReadSelectList": "MyCustomer",
2130
+ "Update": "Mine",
2131
+ "Delete": "Mine",
2132
+ "Count": "MyCustomer",
2133
+ "CountBy": "MyCustomer",
2134
+ "Schema": "MyCustomer",
2135
+ "Validate": "MyCustomer",
2136
+ "New": "MyCustomer"
2137
+ },
2138
+ "Director": {
2139
+ "Create": "Allow",
2140
+ "Read": "MyCustomer",
2141
+ "Reads": "MyCustomer",
2142
+ "ReadsBy": "MyCustomer",
2143
+ "ReadMax": "MyCustomer",
2144
+ "ReadSelectList": "MyCustomer",
2145
+ "Update": "MyCustomer",
2146
+ "Delete": "MyCustomer",
2147
+ "Count": "MyCustomer",
2148
+ "CountBy": "MyCustomer",
2149
+ "Schema": "MyCustomer",
2150
+ "Validate": "MyCustomer",
2151
+ "New": "MyCustomer"
2152
+ },
2153
+ "Executive": {
2154
+ "Create": "Allow",
2155
+ "Read": "MyCustomer",
2156
+ "Reads": "MyCustomer",
2157
+ "ReadsBy": "MyCustomer",
2158
+ "ReadMax": "MyCustomer",
2159
+ "ReadSelectList": "MyCustomer",
2160
+ "Update": "MyCustomer",
2161
+ "Delete": "MyCustomer",
2162
+ "Count": "MyCustomer",
2163
+ "CountBy": "MyCustomer",
2164
+ "Schema": "MyCustomer",
2165
+ "Validate": "MyCustomer",
2166
+ "New": "MyCustomer"
2167
+ },
2168
+ "Administrator": {
2169
+ "Create": "Allow",
2170
+ "Read": "Allow",
2171
+ "Reads": "Allow",
2172
+ "ReadsBy": "Allow",
2173
+ "ReadMax": "Allow",
2174
+ "ReadSelectList": "Allow",
2175
+ "Update": "Allow",
2176
+ "Delete": "Allow",
2177
+ "Count": "Allow",
2178
+ "CountBy": "Allow",
2179
+ "Schema": "Allow",
2180
+ "Validate": "Allow",
2181
+ "New": "Allow"
2182
+ }
2183
+ },
2184
+ "Author": {
2185
+ "__DefaultAPISecurity": {
2186
+ "Create": "Deny",
2187
+ "Read": "Deny",
2188
+ "Reads": "Deny",
2189
+ "ReadsBy": "Deny",
2190
+ "ReadMax": "Deny",
2191
+ "ReadSelectList": "Deny",
2192
+ "Update": "Deny",
2193
+ "Delete": "Deny",
2194
+ "Count": "Deny",
2195
+ "CountBy": "Deny",
2196
+ "Schema": "Deny",
2197
+ "Validate": "Deny",
2198
+ "New": "Deny"
2199
+ },
2200
+ "Unauthenticated": {
2201
+ "Create": "Deny",
2202
+ "Read": "Deny",
2203
+ "Reads": "Deny",
2204
+ "ReadsBy": "Deny",
2205
+ "ReadMax": "Deny",
2206
+ "ReadSelectList": "Deny",
2207
+ "Update": "Deny",
2208
+ "Delete": "Deny",
2209
+ "Count": "Deny",
2210
+ "CountBy": "Deny",
2211
+ "Schema": "Deny",
2212
+ "Validate": "Deny",
2213
+ "New": "Deny"
2214
+ },
2215
+ "Readonly": {
2216
+ "Create": "Deny",
2217
+ "Read": "Allow",
2218
+ "Reads": "Allow",
2219
+ "ReadsBy": "Allow",
2220
+ "ReadMax": "Allow",
2221
+ "ReadSelectList": "Allow",
2222
+ "Update": "Deny",
2223
+ "Delete": "Deny",
2224
+ "Count": "Allow",
2225
+ "CountBy": "Allow",
2226
+ "Schema": "Allow",
2227
+ "Validate": "Allow",
2228
+ "New": "Deny"
2229
+ },
2230
+ "User": {
2231
+ "Create": "Allow",
2232
+ "Read": "MyCustomer",
2233
+ "Reads": "MyCustomer",
2234
+ "ReadsBy": "MyCustomer",
2235
+ "ReadMax": "MyCustomer",
2236
+ "ReadSelectList": "MyCustomer",
2237
+ "Update": "Mine",
2238
+ "Delete": "Mine",
2239
+ "Count": "MyCustomer",
2240
+ "CountBy": "MyCustomer",
2241
+ "Schema": "MyCustomer",
2242
+ "Validate": "MyCustomer",
2243
+ "New": "MyCustomer"
2244
+ },
2245
+ "Manager": {
2246
+ "Create": "Allow",
2247
+ "Read": "MyCustomer",
2248
+ "Reads": "MyCustomer",
2249
+ "ReadsBy": "MyCustomer",
2250
+ "ReadMax": "MyCustomer",
2251
+ "ReadSelectList": "MyCustomer",
2252
+ "Update": "Mine",
2253
+ "Delete": "Mine",
2254
+ "Count": "MyCustomer",
2255
+ "CountBy": "MyCustomer",
2256
+ "Schema": "MyCustomer",
2257
+ "Validate": "MyCustomer",
2258
+ "New": "MyCustomer"
2259
+ },
2260
+ "Director": {
2261
+ "Create": "Allow",
2262
+ "Read": "MyCustomer",
2263
+ "Reads": "MyCustomer",
2264
+ "ReadsBy": "MyCustomer",
2265
+ "ReadMax": "MyCustomer",
2266
+ "ReadSelectList": "MyCustomer",
2267
+ "Update": "MyCustomer",
2268
+ "Delete": "MyCustomer",
2269
+ "Count": "MyCustomer",
2270
+ "CountBy": "MyCustomer",
2271
+ "Schema": "MyCustomer",
2272
+ "Validate": "MyCustomer",
2273
+ "New": "MyCustomer"
2274
+ },
2275
+ "Executive": {
2276
+ "Create": "Allow",
2277
+ "Read": "MyCustomer",
2278
+ "Reads": "MyCustomer",
2279
+ "ReadsBy": "MyCustomer",
2280
+ "ReadMax": "MyCustomer",
2281
+ "ReadSelectList": "MyCustomer",
2282
+ "Update": "MyCustomer",
2283
+ "Delete": "MyCustomer",
2284
+ "Count": "MyCustomer",
2285
+ "CountBy": "MyCustomer",
2286
+ "Schema": "MyCustomer",
2287
+ "Validate": "MyCustomer",
2288
+ "New": "MyCustomer"
2289
+ },
2290
+ "Administrator": {
2291
+ "Create": "Allow",
2292
+ "Read": "Allow",
2293
+ "Reads": "Allow",
2294
+ "ReadsBy": "Allow",
2295
+ "ReadMax": "Allow",
2296
+ "ReadSelectList": "Allow",
2297
+ "Update": "Allow",
2298
+ "Delete": "Allow",
2299
+ "Count": "Allow",
2300
+ "CountBy": "Allow",
2301
+ "Schema": "Allow",
2302
+ "Validate": "Allow",
2303
+ "New": "Allow"
2304
+ }
2305
+ },
2306
+ "BookPrice": {
2307
+ "__DefaultAPISecurity": {
2308
+ "Create": "Deny",
2309
+ "Read": "Deny",
2310
+ "Reads": "Deny",
2311
+ "ReadsBy": "Deny",
2312
+ "ReadMax": "Deny",
2313
+ "ReadSelectList": "Deny",
2314
+ "Update": "Deny",
2315
+ "Delete": "Deny",
2316
+ "Count": "Deny",
2317
+ "CountBy": "Deny",
2318
+ "Schema": "Deny",
2319
+ "Validate": "Deny",
2320
+ "New": "Deny"
2321
+ },
2322
+ "Unauthenticated": {
2323
+ "Create": "Deny",
2324
+ "Read": "Deny",
2325
+ "Reads": "Deny",
2326
+ "ReadsBy": "Deny",
2327
+ "ReadMax": "Deny",
2328
+ "ReadSelectList": "Deny",
2329
+ "Update": "Deny",
2330
+ "Delete": "Deny",
2331
+ "Count": "Deny",
2332
+ "CountBy": "Deny",
2333
+ "Schema": "Deny",
2334
+ "Validate": "Deny",
2335
+ "New": "Deny"
2336
+ },
2337
+ "Readonly": {
2338
+ "Create": "Deny",
2339
+ "Read": "Allow",
2340
+ "Reads": "Allow",
2341
+ "ReadsBy": "Allow",
2342
+ "ReadMax": "Allow",
2343
+ "ReadSelectList": "Allow",
2344
+ "Update": "Deny",
2345
+ "Delete": "Deny",
2346
+ "Count": "Allow",
2347
+ "CountBy": "Allow",
2348
+ "Schema": "Allow",
2349
+ "Validate": "Allow",
2350
+ "New": "Deny"
2351
+ },
2352
+ "User": {
2353
+ "Create": "Allow",
2354
+ "Read": "MyCustomer",
2355
+ "Reads": "MyCustomer",
2356
+ "ReadsBy": "MyCustomer",
2357
+ "ReadMax": "MyCustomer",
2358
+ "ReadSelectList": "MyCustomer",
2359
+ "Update": "Mine",
2360
+ "Delete": "Mine",
2361
+ "Count": "MyCustomer",
2362
+ "CountBy": "MyCustomer",
2363
+ "Schema": "MyCustomer",
2364
+ "Validate": "MyCustomer",
2365
+ "New": "MyCustomer"
2366
+ },
2367
+ "Manager": {
2368
+ "Create": "Allow",
2369
+ "Read": "MyCustomer",
2370
+ "Reads": "MyCustomer",
2371
+ "ReadsBy": "MyCustomer",
2372
+ "ReadMax": "MyCustomer",
2373
+ "ReadSelectList": "MyCustomer",
2374
+ "Update": "Mine",
2375
+ "Delete": "Mine",
2376
+ "Count": "MyCustomer",
2377
+ "CountBy": "MyCustomer",
2378
+ "Schema": "MyCustomer",
2379
+ "Validate": "MyCustomer",
2380
+ "New": "MyCustomer"
2381
+ },
2382
+ "Director": {
2383
+ "Create": "Allow",
2384
+ "Read": "MyCustomer",
2385
+ "Reads": "MyCustomer",
2386
+ "ReadsBy": "MyCustomer",
2387
+ "ReadMax": "MyCustomer",
2388
+ "ReadSelectList": "MyCustomer",
2389
+ "Update": "MyCustomer",
2390
+ "Delete": "MyCustomer",
2391
+ "Count": "MyCustomer",
2392
+ "CountBy": "MyCustomer",
2393
+ "Schema": "MyCustomer",
2394
+ "Validate": "MyCustomer",
2395
+ "New": "MyCustomer"
2396
+ },
2397
+ "Executive": {
2398
+ "Create": "Allow",
2399
+ "Read": "MyCustomer",
2400
+ "Reads": "MyCustomer",
2401
+ "ReadsBy": "MyCustomer",
2402
+ "ReadMax": "MyCustomer",
2403
+ "ReadSelectList": "MyCustomer",
2404
+ "Update": "MyCustomer",
2405
+ "Delete": "MyCustomer",
2406
+ "Count": "MyCustomer",
2407
+ "CountBy": "MyCustomer",
2408
+ "Schema": "MyCustomer",
2409
+ "Validate": "MyCustomer",
2410
+ "New": "MyCustomer"
2411
+ },
2412
+ "Administrator": {
2413
+ "Create": "Allow",
2414
+ "Read": "Allow",
2415
+ "Reads": "Allow",
2416
+ "ReadsBy": "Allow",
2417
+ "ReadMax": "Allow",
2418
+ "ReadSelectList": "Allow",
2419
+ "Update": "Allow",
2420
+ "Delete": "Allow",
2421
+ "Count": "Allow",
2422
+ "CountBy": "Allow",
2423
+ "Schema": "Allow",
2424
+ "Validate": "Allow",
2425
+ "New": "Allow"
2426
+ }
2427
+ },
2428
+ "Review": {
2429
+ "__DefaultAPISecurity": {
2430
+ "Create": "Deny",
2431
+ "Read": "Deny",
2432
+ "Reads": "Deny",
2433
+ "ReadsBy": "Deny",
2434
+ "ReadMax": "Deny",
2435
+ "ReadSelectList": "Deny",
2436
+ "Update": "Deny",
2437
+ "Delete": "Deny",
2438
+ "Count": "Deny",
2439
+ "CountBy": "Deny",
2440
+ "Schema": "Deny",
2441
+ "Validate": "Deny",
2442
+ "New": "Deny"
2443
+ },
2444
+ "Unauthenticated": {
2445
+ "Create": "Deny",
2446
+ "Read": "Deny",
2447
+ "Reads": "Deny",
2448
+ "ReadsBy": "Deny",
2449
+ "ReadMax": "Deny",
2450
+ "ReadSelectList": "Deny",
2451
+ "Update": "Deny",
2452
+ "Delete": "Deny",
2453
+ "Count": "Deny",
2454
+ "CountBy": "Deny",
2455
+ "Schema": "Deny",
2456
+ "Validate": "Deny",
2457
+ "New": "Deny"
2458
+ },
2459
+ "Readonly": {
2460
+ "Create": "Deny",
2461
+ "Read": "Allow",
2462
+ "Reads": "Allow",
2463
+ "ReadsBy": "Allow",
2464
+ "ReadMax": "Allow",
2465
+ "ReadSelectList": "Allow",
2466
+ "Update": "Deny",
2467
+ "Delete": "Deny",
2468
+ "Count": "Allow",
2469
+ "CountBy": "Allow",
2470
+ "Schema": "Allow",
2471
+ "Validate": "Allow",
2472
+ "New": "Deny"
2473
+ },
2474
+ "User": {
2475
+ "Create": "Allow",
2476
+ "Read": "MyCustomer",
2477
+ "Reads": "MyCustomer",
2478
+ "ReadsBy": "MyCustomer",
2479
+ "ReadMax": "MyCustomer",
2480
+ "ReadSelectList": "MyCustomer",
2481
+ "Update": "Mine",
2482
+ "Delete": "Mine",
2483
+ "Count": "MyCustomer",
2484
+ "CountBy": "MyCustomer",
2485
+ "Schema": "MyCustomer",
2486
+ "Validate": "MyCustomer",
2487
+ "New": "MyCustomer"
2488
+ },
2489
+ "Manager": {
2490
+ "Create": "Allow",
2491
+ "Read": "MyCustomer",
2492
+ "Reads": "MyCustomer",
2493
+ "ReadsBy": "MyCustomer",
2494
+ "ReadMax": "MyCustomer",
2495
+ "ReadSelectList": "MyCustomer",
2496
+ "Update": "Mine",
2497
+ "Delete": "Mine",
2498
+ "Count": "MyCustomer",
2499
+ "CountBy": "MyCustomer",
2500
+ "Schema": "MyCustomer",
2501
+ "Validate": "MyCustomer",
2502
+ "New": "MyCustomer"
2503
+ },
2504
+ "Director": {
2505
+ "Create": "Allow",
2506
+ "Read": "MyCustomer",
2507
+ "Reads": "MyCustomer",
2508
+ "ReadsBy": "MyCustomer",
2509
+ "ReadMax": "MyCustomer",
2510
+ "ReadSelectList": "MyCustomer",
2511
+ "Update": "MyCustomer",
2512
+ "Delete": "MyCustomer",
2513
+ "Count": "MyCustomer",
2514
+ "CountBy": "MyCustomer",
2515
+ "Schema": "MyCustomer",
2516
+ "Validate": "MyCustomer",
2517
+ "New": "MyCustomer"
2518
+ },
2519
+ "Executive": {
2520
+ "Create": "Allow",
2521
+ "Read": "MyCustomer",
2522
+ "Reads": "MyCustomer",
2523
+ "ReadsBy": "MyCustomer",
2524
+ "ReadMax": "MyCustomer",
2525
+ "ReadSelectList": "MyCustomer",
2526
+ "Update": "MyCustomer",
2527
+ "Delete": "MyCustomer",
2528
+ "Count": "MyCustomer",
2529
+ "CountBy": "MyCustomer",
2530
+ "Schema": "MyCustomer",
2531
+ "Validate": "MyCustomer",
2532
+ "New": "MyCustomer"
2533
+ },
2534
+ "Administrator": {
2535
+ "Create": "Allow",
2536
+ "Read": "Allow",
2537
+ "Reads": "Allow",
2538
+ "ReadsBy": "Allow",
2539
+ "ReadMax": "Allow",
2540
+ "ReadSelectList": "Allow",
2541
+ "Update": "Allow",
2542
+ "Delete": "Allow",
2543
+ "Count": "Allow",
2544
+ "CountBy": "Allow",
2545
+ "Schema": "Allow",
2546
+ "Validate": "Allow",
2547
+ "New": "Allow"
2548
+ }
2549
+ }
2550
+ },
2551
+ "Endpoints": {
2552
+ "Create": true,
2553
+ "Read": true,
2554
+ "Reads": true,
2555
+ "ReadsBy": true,
2556
+ "ReadMax": true,
2557
+ "ReadSelectList": true,
2558
+ "Update": true,
2559
+ "Delete": true,
2560
+ "Count": true,
2561
+ "CountBy": true,
2562
+ "Schema": true,
2563
+ "Validate": true,
2564
+ "New": true
2565
+ },
2566
+ "Pict": {}
2567
+ }