> ## Documentation Index
> Fetch the complete documentation index at: https://docs.aitasker.co/llms.txt
> Use this file to discover all available pages before exploring further.

# List Removed Seeds

> List explicit removals on this copy's current record. Reads only.



## OpenAPI

````yaml /openapi.json get /api/v1/brands/{brand_id}/competitors/removed-seeds
openapi: 3.1.0
info:
  title: AITasker
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/brands/{brand_id}/competitors/removed-seeds:
    get:
      tags:
        - Brands
        - Brands
      summary: List Removed Seeds
      description: List explicit removals on this copy's current record. Reads only.
      operationId: >-
        list_removed_seeds_api_v1_brands__brand_id__competitors_removed_seeds_get
      parameters:
        - name: brand_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Brand Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RemovedCompetitorSeedResponse'
                title: >-
                  Response List Removed Seeds Api V1 Brands  Brand Id 
                  Competitors Removed Seeds Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    RemovedCompetitorSeedResponse:
      properties:
        seed_id:
          type: string
          format: uuid
          title: Seed Id
        brand_id:
          type: string
          format: uuid
          title: Brand Id
        competitor_domain:
          type: string
          title: Competitor Domain
        name:
          type: string
          title: Name
        website_url:
          type: string
          title: Website Url
        country:
          anyOf:
            - type: string
            - type: 'null'
          title: Country
        is_seed:
          type: boolean
          const: true
          title: Is Seed
          default: true
        override:
          $ref: '#/components/schemas/CompetitorOverrideResponse'
      type: object
      required:
        - seed_id
        - brand_id
        - competitor_domain
        - name
        - website_url
        - override
      title: RemovedCompetitorSeedResponse
      description: A current-market seed explicitly removed from this copy's roster.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    CompetitorOverrideResponse:
      properties:
        added:
          type: boolean
          title: Added
          default: false
        removed:
          type: boolean
          title: Removed
          default: false
        starred:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Starred
        edited_fields:
          items:
            type: string
          type: array
          title: Edited Fields
      type: object
      title: CompetitorOverrideResponse
      description: >-
        The copy's diff over its record's seed, for one competitor (T10 Phase
        2).


        Additive: ``None`` on a competitor the diff does not name (a plain seed

        row). The Competitors tab renders the per-user markers from it --

        *added by you* (``added``), *edited by you* (``edited_fields``),

        *starred* (``starred``). Removed seeds expose the same diff separately

        from the active roster, with ``removed`` set to ``True``.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````