Skip to content

Commit

Permalink
Merge branch 'feature/3408' of github.com:hashgraph/guardian into fea…
Browse files Browse the repository at this point in the history
…ture/3408
  • Loading branch information
Stepan-Kirjakov committed Jan 28, 2025
2 parents 2072616 + 050a7f6 commit cae0c00
Showing 1 changed file with 85 additions and 3 deletions.
88 changes: 85 additions & 3 deletions swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12972,18 +12972,20 @@ paths:
parameters: []
requestBody:
required: true
description: Configuration.
description: Options.
content:
application/json:
schema:
$ref: '#/components/schemas/SchemaRuleDataDTO'
$ref: '#/components/schemas/SchemaRuleOptionsDTO'
responses:
'200':
description: Successful operation.
content:
application/json:
schema:
$ref: '#/components/schemas/SchemaRuleDataDTO'
type: array
items:
$ref: '#/components/schemas/SchemaRuleDataDTO'
'401':
description: Unauthorized.
'403':
Expand Down Expand Up @@ -13427,6 +13429,39 @@ paths:
tags: *ref_29
security:
- bearer: []
/formulas/data:
post:
operationId: FormulasApi_getSchemaRuleData
summary: ''
description: ''
parameters: []
requestBody:
required: true
description: Options.
content:
application/json:
schema:
$ref: '#/components/schemas/FormulasOptionsDTO'
responses:
'200':
description: Successful operation.
content:
application/json:
schema:
$ref: '#/components/schemas/FormulasDataDTO'
'401':
description: Unauthorized.
'403':
description: Forbidden.
'500':
description: Internal server error.
content:
application/json:
schema:
$ref: '#/components/schemas/InternalServerErrorDTO'
tags: *ref_29
security:
- bearer: []
/policy-labels:
post:
operationId: PolicyLabelsApi_createPolicyLabel
Expand Down Expand Up @@ -17598,6 +17633,21 @@ components:
type: array
items:
$ref: '#/components/schemas/SchemaDTO'
SchemaRuleOptionsDTO:
type: object
properties:
policyId:
type: string
example: '000000000000000000000001'
schemaId:
type: string
example: '000000000000000000000001'
documentId:
type: string
example: '000000000000000000000001'
parentId:
type: string
example: '000000000000000000000001'
SchemaRuleDataDTO:
type: object
properties:
Expand Down Expand Up @@ -17651,6 +17701,38 @@ components:
FormulaRelationshipsDTO:
type: object
properties: {}
FormulasDataDTO:
type: object
properties:
formulas:
type: array
items:
$ref: '#/components/schemas/FormulaDTO'
document:
$ref: '#/components/schemas/VcDocumentDTO'
relationships:
type: array
items:
$ref: '#/components/schemas/VcDocumentDTO'
schemas:
type: array
items:
$ref: '#/components/schemas/SchemaDTO'
FormulasOptionsDTO:
type: object
properties:
policyId:
type: string
example: '000000000000000000000001'
schemaId:
type: string
example: '000000000000000000000001'
documentId:
type: string
example: '000000000000000000000001'
parentId:
type: string
example: '000000000000000000000001'
PolicyLabelDTO:
type: object
properties:
Expand Down

0 comments on commit cae0c00

Please sign in to comment.