-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcancelOrder.json
executable file
·58 lines (58 loc) · 2.19 KB
/
cancelOrder.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
{
"$id": "https://raw.githubusercontent.com/lowcarbontrade/fix-reference/main/cancelOrder.json",
"$schema": "https://json-schema.org/draft/2020-12/schema#",
"type": "object",
"properties": {
"Header": {
"$ref": "https://raw.githubusercontent.com/lowcarbontrade/fix-reference/main/header.json"
},
"Body": {
"type": "object",
"properties": {
"OrigClOrdID": {
"type": "string",
"description": "Original unique identifier for Order as assigned by institution"
},
"ClOrdID": {
"type": "string",
"description": "Unique ID of cancel request as assigned by the institution"
},
"Instrument": {
"$ref": "https://raw.githubusercontent.com/lowcarbontrade/fix-reference/main/instrument.json"
},
"Side": {
"type": "string",
"description": "Side of order (1 = buy, 2 = sell)",
"enum": [
"1",
"2"
]
},
"OrderQtyData": {
"$ref": "https://raw.githubusercontent.com/lowcarbontrade/fix-reference/main/orderQtyData.json"
},
"TransactTime": {
"type": "string",
"description": "Time of execution/order creation (always expressed in UTC (Universal Time Coordinated, also known as \"GMT\")",
"pattern": "\\b[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}.[0-9]{6}Z\\b"
}
},
"required": [
"OrigClOrdID",
"ClOrdID",
"Instrument",
"Side",
"OrderQtyData",
"TransactTime"
]
},
"Trailer": {
"$ref": "https://raw.githubusercontent.com/lowcarbontrade/fix-reference/main/trailer.json"
}
},
"required": [
"Header",
"Body",
"Trailer"
]
}