post:
  summary: Add like to the review
  parameters:
    - in: path
      name: reviewId
      required: true
      schema:
        type: string
      description: Review ID
  operationId: rest.review.likes.post
  security:
    - jwt: []
  responses:
    201:
      $ref: '../components/components.yaml#/components/responses/SimpleSuccessResponse'
    404:
      $ref: '../components/components.yaml#/components/responses/404NotFound'
    default:
      $ref: '../components/components.yaml#/components/responses/UnexpectedError'

delete:
  summary: Delete the like of the review
  parameters:
    - in: path
      name: reviewId
      required: true
      schema:
        type: string
      description: Review ID
  operationId: rest.review.likes.delete
  security:
    - jwt: []
  responses:
    204:
      $ref: '../components/components.yaml#/components/responses/SimpleSuccessResponse'
    404:
      $ref: '../components/components.yaml#/components/responses/404NotFound'
    default:
      $ref: '../components/components.yaml#/components/responses/UnexpectedError'
