| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- get:
- operationId: GetTermRevisions
- summary: >-
- A list of all changes between the revisions of this term.
- security: []
- parameters:
- - $ref: ../../../../../components/parameters/term.yaml
- tags:
- - Terms / Revisions
- responses:
- "200":
- $ref: ../../../../../components/responses/api/terms/{term}/revisions/index-get-200.yaml
- "404":
- $ref: ../../../../../components/responses/404.yaml
- post:
- operationId: PostTermRevision
- summary: >-
- Create a new term. [OPTIONAL:Management]
- description: >-
- **THIS IS AN OPTIONAL ENDPOINT**: This endpoint might not be implemented, as it
- requires a server running!
- security:
- - authRequired: []
- parameters:
- - $ref: ../../../../../components/parameters/term.yaml
- tags:
- - Terms / Revisions
- requestBody:
- required: true
- content:
- application/json:
- schema:
- $ref: "../../../../../components/schemas/api/term.yaml"
- responses:
- "200":
- $ref: ../../../../../components/responses/api/terms/{term}/revisions/index-post-200.yaml
- "401":
- $ref: ../../../../../components/responses/401.yaml
- "404":
- $ref: ../../../../../components/responses/404.yaml
|