get:
  tags:
    - All Resources
    - Videos
  summary: 'Get one Video'
  operationId: videos.get
  description: >-
    Resource route for getting a single `Video` object.
  security:
    - bearerAuth: []
  parameters:
    - $ref: '../parameters/video_id_path.yaml'
  responses:
    200:
      $ref: '../responses/VideoResponse.yaml'
    400:
      $ref: '../responses/InvalidInput.yaml'
    401:
      $ref: '../responses/Unauthorized.yaml'
    404:
      $ref: '../responses/NotFoundError.yaml'
    500:
      $ref: '../responses/InternalError.yaml'