Skip to content

Commit 17cec02

Browse files
committed
Review comments
- remove FDS_ID from contact - make holding mandatory on position
1 parent 6006d0c commit 17cec02

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

src/context/schemas/contact.schema.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@
88
"id": {
99
"type": "object",
1010
"properties": {
11-
"email": { "type": "string" },
12-
"FDS_ID": { "type": "string" }
11+
"email": { "type": "string" }
1312
}
1413
}
1514
},

src/context/schemas/position.schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@
88
"instrument": { "$ref": "instrument.schema#/" },
99
"holding": { "type": "number", "minimum": 0 }
1010
},
11-
"required": ["instrument"]
11+
"required": ["instrument","holding"]
1212
}

website/static/schemas/next/contact.schema.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@
88
"id": {
99
"type": "object",
1010
"properties": {
11-
"email": { "type": "string" },
12-
"FDS_ID": { "type": "string" }
11+
"email": { "type": "string" }
1312
}
1413
}
1514
},

website/static/schemas/next/position.schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@
88
"instrument": { "$ref": "instrument.schema#/" },
99
"holding": { "type": "number", "minimum": 0 }
1010
},
11-
"required": ["instrument"]
11+
"required": ["instrument","holding"]
1212
}

0 commit comments

Comments
 (0)