get:
  tags:
    - All Resources
    - Ads
    - Products
  summary: 'Get one Project'
  operationId: project.get
  description: >-
    Resource route for getting a single `Project`.

    Projects are synonymous with Recording Projects in GRAS.
    Projects connect various resources like Repertoire Owners and Labels to Products and Artists.
  security:
    - bearerAuth: []
  parameters:
    - $ref: '../parameters/project_id_path.yaml'
  responses:
    200:
      $ref: '../responses/ProjectResponse.yaml'
    400:
      $ref: '../responses/InvalidInput.yaml'
    401:
      $ref: '../responses/Unauthorized.yaml'
    404:
      $ref: '../responses/NotFoundError.yaml'
    500:
      $ref: '../responses/InternalError.yaml'