> ## 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.

# Validation plot manifest for an element

> Validation plot manifest resolved from the element's job.

``validation_plot_config`` is None until the element is terminal; the
``validation_not_supported`` / ``message`` / ``validation_warning`` fields
explain an empty manifest. Plot traces come from
``GET /pipelines/elements/{element_id}/plot_data``.



## OpenAPI

````yaml https://api.ionworks.com/openapi.json get /pipelines/elements/{element_id}/validation
openapi: 3.1.0
info:
  title: FastAPI
  version: 0.1.0
servers:
  - url: https://api.ionworks.com
    description: Production
security: []
paths:
  /pipelines/elements/{element_id}/validation:
    get:
      tags:
        - Pipeline
      summary: Validation plot manifest for an element
      description: >-
        Validation plot manifest resolved from the element's job.


        ``validation_plot_config`` is None until the element is terminal; the

        ``validation_not_supported`` / ``message`` / ``validation_warning``
        fields

        explain an empty manifest. Plot traces come from

        ``GET /pipelines/elements/{element_id}/plot_data``.
      operationId: >-
        get_pipeline_element_validation_pipelines_elements__element_id__validation_get
      parameters:
        - name: element_id
          in: path
          required: true
          schema:
            type: string
            title: Element Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ElementValidationResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ElementValidationResponse:
      properties:
        element_id:
          type: string
          title: Element Id
        status:
          $ref: '#/components/schemas/PipelineElementStatus'
        validation_plot_config:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Validation Plot Config
        validation_not_supported:
          type: boolean
          title: Validation Not Supported
          default: false
        message:
          anyOf:
            - type: string
            - type: 'null'
          title: Message
        validation_warning:
          anyOf:
            - type: string
            - type: 'null'
          title: Validation Warning
      type: object
      required:
        - element_id
        - status
      title: ElementValidationResponse
      description: Response from GET /pipelines/elements/{element_id}/validation.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    PipelineElementStatus:
      type: string
      enum:
        - pending
        - running
        - completed
        - failed
        - skipped
        - canceled
      title: PipelineElementStatus
    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

````