This repository was archived by the owner on Dec 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathTanks.json
More file actions
62 lines (62 loc) · 1.47 KB
/
Tanks.json
File metadata and controls
62 lines (62 loc) · 1.47 KB
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
{
"definitions": {
"Tank_Basic_Data": {
"kind": "entity",
"@ObjectModel.supportedCapabilities": [
{
"#": "DATA_STRUCTURE"
}
],
"elements": {
"TANK_ID": {
"@EndUserText.label": "TANK_ID",
"type": "cds.String",
"length": 30,
"key": true
},
"LATITUDE": {
"@EndUserText.label": "LATITUDE",
"precision": 38,
"scale": 19,
"type": "cds.Decimal"
},
"LONGITUDE": {
"@EndUserText.label": "LONGITUDE",
"precision": 38,
"scale": 19,
"type": "cds.Decimal"
},
"INSPECTIONDATE": {
"@EndUserText.label": "INSPECTIONDATE",
"type": "cds.Date"
},
"SIZE": {
"@EndUserText.label": "SIZE",
"type": "cds.String",
"length": 10
},
"MEASURETECHNIQUE": {
"@EndUserText.label": "MEASURETECHNIQUE",
"type": "cds.String",
"length": 10
},
"MAX_CAPACITY": {
"@EndUserText.label": "MAX_CAPACITY",
"type": "cds.Integer64"
},
"UOM": {
"@EndUserText.label": "UOM",
"type": "cds.String",
"length": 10
}
},
"@EndUserText.label": "Tank_Basic_Data",
"@ObjectModel.modelingPattern": {
"#": "DATA_STRUCTURE"
}
}
},
"meta": {
"PlatformRepositoryVersion": "2023.9.56"
}
}