Skip to content

Commit

Permalink
ran script generate-open-api-spec
Browse files Browse the repository at this point in the history
Signed-off-by: cl0ete <[email protected]>
  • Loading branch information
cl0ete committed Aug 14, 2024
1 parent fd63f69 commit 0f368dd
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 4 deletions.
14 changes: 12 additions & 2 deletions open-api/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -13703,8 +13703,18 @@
},
"TxnOrPublishRevocationsResult" : {
"properties" : {
"sent" : {
"$ref" : "#/components/schemas/PublishRevocations"
"rrid2crid" : {
"additionalProperties" : {
"items" : {
"description" : "Credential revocation identifier",
"example" : "12345",
"pattern" : "^[1-9][0-9]*$",
"type" : "string"
},
"type" : "array"
},
"description" : "Credential revocation ids by revocation registry id",
"type" : "object"
},
"txn" : {
"items" : {
Expand Down
14 changes: 12 additions & 2 deletions open-api/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -12148,8 +12148,18 @@
"TxnOrPublishRevocationsResult" : {
"type" : "object",
"properties" : {
"sent" : {
"$ref" : "#/definitions/PublishRevocations"
"rrid2crid" : {
"type" : "object",
"description" : "Credential revocation ids by revocation registry id",
"additionalProperties" : {
"type" : "array",
"items" : {
"type" : "string",
"example" : "12345",
"description" : "Credential revocation identifier",
"pattern" : "^[1-9][0-9]*$"
}
}
},
"txn" : {
"type" : "array",
Expand Down

0 comments on commit 0f368dd

Please sign in to comment.