retold-data-service 2.0.7 → 2.0.9

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 (54) hide show
  1. package/.vscode/settings.json +33 -14
  2. package/debug/Harness.js +81 -2
  3. package/package.json +4 -2
  4. package/source/Retold-Data-Service.js +58 -18
  5. package/test/model/{json/MeadowModel-Extended.json → MeadowModel-Extended.json} +969 -5
  6. package/{debug/model/generated_documentation → test/model/doc}/Dictionary.md +1 -1
  7. package/{debug/model/generated_documentation → test/model/doc}/Model-Author.md +5 -5
  8. package/{debug/model/generated_documentation → test/model/doc}/Model-Book.md +6 -6
  9. package/{debug/model/generated_documentation → test/model/doc}/Model-BookAuthorJoin.md +4 -4
  10. package/{debug/model/generated_documentation → test/model/doc}/Model-BookPrice.md +6 -6
  11. package/{debug/model/generated_documentation → test/model/doc}/Model-Review.md +7 -7
  12. package/{debug/model/generated_documentation → test/model/doc}/ModelChangeTracking.md +1 -1
  13. package/{debug/model/generated_diagram/Stricture_Output.dot → test/model/doc/diagrams/Relationships.dot} +1 -1
  14. package/test/model/doc/diagrams/RelationshipsFull.dot +13 -0
  15. package/test/model/doc/diagrams/RelationshipsFull.png +0 -0
  16. package/test/model/meadow/MeadowSchemaAuthor.json +431 -0
  17. package/test/model/meadow/MeadowSchemaBook.json +527 -0
  18. package/test/model/meadow/MeadowSchemaBookAuthorJoin.json +335 -0
  19. package/test/model/meadow/MeadowSchemaBookPrice.json +511 -0
  20. package/test/model/meadow/MeadowSchemaReview.json +463 -0
  21. package/{debug/model/sql_create/BookStore-CreateDatabase.mysql.sql → test/model/mysql_create/MeadowModel-CreateMySQLDatabase.mysql.sql} +6 -6
  22. package/debug/bookstore-configuration.json +0 -26
  23. package/debug/model/Model-Extended.json +0 -915
  24. package/debug/model/Model-PICT.json +0 -1
  25. package/debug/model/Model.json +0 -280
  26. package/debug/model/bookstore-api-endpoint-exercises.paw +0 -0
  27. package/debug/model/ddl/BookStore.ddl +0 -66
  28. package/debug/model/generated_diagram/README.md +0 -1
  29. package/debug/model/generated_documentation/README.md +0 -1
  30. package/debug/model/manual_scripts/DropTables.sql +0 -5
  31. package/debug/model/manual_scripts/MySQL-Laden-Entry-ServicesOnly.sh +0 -28
  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/Model.ddl +0 -66
  46. package/test/model/Model.json +0 -280
  47. package/test/model/meadow/Model-MeadowSchema-Author.json +0 -220
  48. package/test/model/meadow/Model-MeadowSchema-Book.json +0 -268
  49. package/test/model/meadow/Model-MeadowSchema-BookAuthorJoin.json +0 -172
  50. package/test/model/meadow/Model-MeadowSchema-BookPrice.json +0 -260
  51. package/test/model/meadow/Model-MeadowSchema-Review.json +0 -236
  52. /package/test/model/{json/MeadowModel-PICT.json → MeadowModel-PICT.json} +0 -0
  53. /package/test/model/{json/MeadowModel.json → MeadowModel.json} +0 -0
  54. /package/{debug/model/generated_diagram/Stricture_Output.png → test/model/doc/diagrams/Relationships.png} +0 -0
@@ -256,7 +256,268 @@
256
256
  },
257
257
  "required": [
258
258
  "IDBook"
259
- ]
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
+ }
260
521
  },
261
522
  "Authorization": {}
262
523
  }
@@ -343,7 +604,94 @@
343
604
  },
344
605
  "required": [
345
606
  "IDBookAuthorJoin"
346
- ]
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
+ }
347
695
  },
348
696
  "Authorization": {}
349
697
  }
@@ -514,7 +862,178 @@
514
862
  },
515
863
  "required": [
516
864
  "IDAuthor"
517
- ]
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
+ }
518
1037
  },
519
1038
  "Authorization": {}
520
1039
  }
@@ -758,7 +1277,251 @@
758
1277
  },
759
1278
  "required": [
760
1279
  "IDBookPrice"
761
- ]
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
+ }
762
1525
  },
763
1526
  "Authorization": {}
764
1527
  }
@@ -959,7 +1722,208 @@
959
1722
  },
960
1723
  "required": [
961
1724
  "IDReviews"
962
- ]
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
+ }
963
1927
  },
964
1928
  "Authorization": {}
965
1929
  }