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 b4b7ada + 28e8c52 commit 808fa8b
Showing 1 changed file with 44 additions and 1 deletion.
45 changes: 44 additions & 1 deletion swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13429,6 +13429,39 @@ paths:
tags: *ref_29
security:
- bearer: []
/formulas/{formulaId}/publish:
put:
operationId: FormulasApi_publishPolicyLabel
summary: Publishes formula.
description: Publishes formula for the specified formula ID.
parameters:
- name: formulaId
required: true
in: path
description: Formula Identifier
example: '000000000000000000000001'
schema:
type: string
responses:
'200':
description: Successful operation.
content:
application/json:
schema:
$ref: '#/components/schemas/FormulaDTO'
'401':
description: Unauthorized.
'403':
description: Forbidden.
'500':
description: Internal server error.
content:
application/json:
schema:
$ref: '#/components/schemas/InternalServerErrorDTO'
tags: *ref_29
security:
- bearer: []
/formulas/data:
post:
operationId: FormulasApi_getSchemaRuleData
Expand Down Expand Up @@ -17700,7 +17733,17 @@ components:
- name
FormulaRelationshipsDTO:
type: object
properties: {}
properties:
policy:
$ref: '#/components/schemas/PolicyDTO'
schemas:
type: array
items:
$ref: '#/components/schemas/SchemaDTO'
formulas:
type: array
items:
$ref: '#/components/schemas/FormulaDTO'
FormulasDataDTO:
type: object
properties:
Expand Down

0 comments on commit 808fa8b

Please sign in to comment.