-
Notifications
You must be signed in to change notification settings - Fork 5.1k
/
common.json
69 lines (69 loc) · 1.86 KB
/
common.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
{
"swagger": "2.0",
"info": {
"version": "0.1-preview",
"title": "ConfidentialLedgerClient",
"description": "The ConfidentialLedgerClient writes and retrieves ledger entries against the Confidential Ledger service."
},
"paths": {},
"definitions": {
"ConfidentialLedgerError": {
"description": "An error response from Confidential Ledger.",
"properties": {
"error": {
"readOnly": true,
"$ref": "#/definitions/ConfidentialLedgerErrorBody"
}
},
"type": "object"
},
"ConfidentialLedgerErrorBody": {
"description": "An error response from Confidential Ledger.",
"properties": {
"code": {
"type": "string",
"readOnly": true,
"description": "The error code."
},
"message": {
"type": "string",
"readOnly": true,
"description": "The error message."
},
"innererror": {
"x-ms-client-name": "innerError",
"readOnly": true,
"$ref": "#/definitions/ConfidentialLedgerErrorBody"
}
},
"x-nullable": true,
"type": "object"
},
"ConfidentialLedgerInnerError": {
"description": "An inner error response from Confidential Ledger.",
"properties": {
"code": {
"type": "string",
"readOnly": true,
"description": "The error code."
},
"innererror": {
"x-ms-client-name": "innerError",
"readOnly": true,
"$ref": "#/definitions/ConfidentialLedgerErrorBody"
}
},
"x-nullable": true,
"type": "object"
}
},
"parameters": {
"ApiVersionParameter": {
"name": "api-version",
"in": "query",
"required": true,
"type": "string",
"description": "The API version to be used with the HTTP request."
}
}
}