Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Confidential Ledger Preview spec #13613

Merged
merged 16 commits into from
May 6, 2021
2 changes: 2 additions & 0 deletions custom-words.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1057,6 +1057,7 @@ MCAS
MDATP
mebibytes
mediaservices
Merkle
Meru
Mesos
messagingplan
Expand Down Expand Up @@ -1224,6 +1225,7 @@ octokit
Odata
odatatype
ODBC
oeverify
offboard
offboards
officedocument
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,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."
}
}
}
Loading