index.yaml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. get:
  2. operationId: GetTermRevisions
  3. summary: >-
  4. A list of all changes between the revisions of this term.
  5. security: []
  6. parameters:
  7. - $ref: ../../../../../components/parameters/term.yaml
  8. tags:
  9. - Terms / Revisions
  10. responses:
  11. "200":
  12. $ref: ../../../../../components/responses/api/terms/{term}/revisions/index-get-200.yaml
  13. "404":
  14. $ref: ../../../../../components/responses/404.yaml
  15. post:
  16. operationId: PostTermRevision
  17. summary: >-
  18. Create a new term. [OPTIONAL:Management]
  19. description: >-
  20. **THIS IS AN OPTIONAL ENDPOINT**: This endpoint might not be implemented, as it
  21. requires a server running!
  22. security:
  23. - authRequired: []
  24. parameters:
  25. - $ref: ../../../../../components/parameters/term.yaml
  26. tags:
  27. - Terms / Revisions
  28. requestBody:
  29. required: true
  30. content:
  31. application/json:
  32. schema:
  33. $ref: "../../../../../components/schemas/api/term.yaml"
  34. responses:
  35. "200":
  36. $ref: ../../../../../components/responses/api/terms/{term}/revisions/index-post-200.yaml
  37. "401":
  38. $ref: ../../../../../components/responses/401.yaml
  39. "404":
  40. $ref: ../../../../../components/responses/404.yaml