-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbooks.json
72 lines (72 loc) · 1.6 KB
/
books.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"version": 1,
"id": "books",
"name": "books",
"endpointBasePath": "/books",
"schema": {
"type": "object",
"required": [
"ID",
"TITLE",
"AUTHOR"
],
"properties": {
"ID": {
"type": "number"
},
"TITLE": {
"type": "string",
"description": "The name of the book"
},
"AUTHOR": {
"type": "string",
"description": "The author of the book"
},
"PRICE": {
"type": "number"
},
"PUBLISHED": {
"type": "boolean"
},
"SALESFORECAST": {
"type": "number"
},
"LANGUAGE": {
"type": "string",
"description": "The language of the book"
},
"RELEASEDATE": {
"type": "string",
"format": "date-time"
},
"RELEASEPRICE": {
"type": "decimal"
},
"CREATORID": {
"type": "string",
"description": "User id that has created this object"
},
"CREATEDAT": {
"type": "Date",
"description": "Date of the request that has performed the object creation"
},
"UPDATERID": {
"type": "string",
"description": "User id that has requested the last change successfully"
},
"UPDATEDAT": {
"type": "Date",
"description": "Date of the request that has performed the last change"
}
}
},
"metadata": {
"primaryKey": "ID",
"creatorId": "CREATORID",
"updaterId": "UPDATERID",
"createdAt": "CREATEDAT",
"updatedAt": "UPDATEDAT",
"timezone": "Europe/Rome",
"manageIdColumn": "false"
}
}