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

# List a raw-data record's validation findings

> List every validation finding recorded for this record.

Each finding reports the choices it supports in ``options``, so a client
renders the reviewer's buttons without a per-code table of its own.

The record's ingestion state — ``processing_status``, ``reader``,
``processed_at``, ``processing_error`` — is on the record itself and comes
back from ``GET /raw_data/{raw_data_id}``; it is not duplicated here.



## OpenAPI

````yaml https://api.ionworks.com/openapi.json get /raw_data/{raw_data_id}/issues
openapi: 3.1.0
info:
  title: FastAPI
  version: 0.1.0
servers:
  - url: https://api.ionworks.com
    description: Production
security: []
paths:
  /raw_data/{raw_data_id}/issues:
    get:
      tags:
        - Raw Data
      summary: List a raw-data record's validation findings
      description: >-
        List every validation finding recorded for this record.


        Each finding reports the choices it supports in ``options``, so a client

        renders the reviewer's buttons without a per-code table of its own.


        The record's ingestion state — ``processing_status``, ``reader``,

        ``processed_at``, ``processing_error`` — is on the record itself and
        comes

        back from ``GET /raw_data/{raw_data_id}``; it is not duplicated here.
      operationId: list_raw_data_issues_raw_data__raw_data_id__issues_get
      parameters:
        - name: raw_data_id
          in: path
          required: true
          schema:
            type: string
            title: Raw Data Id
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 100
            minimum: 1
            default: 100
            title: Limit
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            title: Offset
            default: 0
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedResponse_RawDataIssue_'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    PaginatedResponse_RawDataIssue_:
      properties:
        items:
          items:
            $ref: '#/components/schemas/RawDataIssue'
          type: array
          title: Items
        count:
          type: integer
          title: Count
        total:
          type: integer
          title: Total
      type: object
      required:
        - items
        - count
        - total
      title: PaginatedResponse[RawDataIssue]
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    RawDataIssue:
      properties:
        id:
          anyOf:
            - type: string
            - type: 'null'
          title: Id
          description: Row id once persisted; None for freshly parsed issues.
        code:
          type: string
          title: Code
          description: >-
            Stable machine-readable code — an ionworks IssueCode value or an
            engine-specific code. Branch on this, never on title/detail.
        severity:
          type: string
          enum:
            - auto_fixed
            - warning
            - needs_input
            - blocking
          title: Severity
          description: Whether this blocks ingestion and how it is displayed.
        title:
          type: string
          title: Title
          description: Plain-English title, no error codes.
        detail:
          type: string
          title: Detail
          description: One-paragraph explanation.
          default: ''
        payload:
          additionalProperties: true
          type: object
          title: Payload
          description: 'Structured details: columns, observed values, row ranges.'
        fix_summary:
          anyOf:
            - type: string
            - type: 'null'
          title: Fix Summary
          description: 'For auto_fixed issues: short description of what changed.'
        resolution:
          anyOf:
            - type: string
              enum:
                - accept
                - reject
                - change_cell
            - type: 'null'
          title: Resolution
          description: Reviewer decision; None while unresolved.
        resolved_by:
          anyOf:
            - type: string
            - type: 'null'
          title: Resolved By
          description: User who resolved it.
        resolved_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Resolved At
          description: Resolution timestamp.
        options:
          items:
            $ref: '#/components/schemas/FixOption'
          type: array
          title: Options
          description: |-
            Choices available for this finding.

            Derived from ``code`` and ``severity`` rather than stored, so the
            catalogue can grow without a migration and can never drift from what
            :meth:`resolve` actually accepts.
          readOnly: true
      type: object
      required:
        - code
        - severity
        - title
        - options
      title: RawDataIssue
      description: |-
        A single validation finding for a raw-data file.

        Emitted by the parse engine (with no id/timestamps) and persisted to
        ``raw_data_issues``, where it gains identity and resolution fields.
    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
    FixOption:
      properties:
        id:
          type: string
          enum:
            - accept
            - reject
            - change_cell
          title: Id
          description: Value to send back as the resolution.
        label:
          type: string
          title: Label
          description: Plain-English button label.
        detail:
          type: string
          title: Detail
          description: What choosing this will do.
          default: ''
        recommended:
          type: boolean
          title: Recommended
          description: Whether this is the engine's suggested choice.
          default: false
      type: object
      required:
        - id
        - label
      title: FixOption
      description: |-
        One choice a reviewer can make about a finding.

        Options are computed from the issue's ``code`` rather than stored, so a
        client renders the choices without hardcoding what each code supports.

````