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

# Get Job Validation Series

> One objective's validation series, windowed and budgeted.

The same payload ``/metadata`` carries whole. That route has to stay -- API clients read
fields from it -- but a plot asking it for a time series downloads every sample of both
solves to draw a few hundred, which is what this exists to stop.



## OpenAPI

````yaml https://api.ionworks.com/openapi.json get /jobs/{job_id}/series
openapi: 3.1.0
info:
  title: FastAPI
  version: 0.1.0
servers:
  - url: https://api.ionworks.com
    description: Production
security: []
paths:
  /jobs/{job_id}/series:
    get:
      tags:
        - jobs
      summary: Get Job Validation Series
      description: >-
        One objective's validation series, windowed and budgeted.


        The same payload ``/metadata`` carries whole. That route has to stay --
        API clients read

        fields from it -- but a plot asking it for a time series downloads every
        sample of both

        solves to draw a few hundred, which is what this exists to stop.
      operationId: get_job_validation_series_jobs__job_id__series_get
      parameters:
        - name: job_id
          in: path
          required: true
          schema:
            type: string
            description: Job whose validation series to read
            title: Job Id
          description: Job whose validation series to read
        - name: objective
          in: query
          required: true
          schema:
            type: string
            description: Objective name within the payload
            title: Objective
          description: Objective name within the payload
        - name: source
          in: query
          required: false
          schema:
            type: string
            description: 'Which solve to read: ''optimal'' or ''baseline'''
            default: optimal
            title: Source
          description: 'Which solve to read: ''optimal'' or ''baseline'''
        - name: columns
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: >-
              Comma-separated channels to return besides the x column. Defaults
              to every channel the objective carries.
            title: Columns
          description: >-
            Comma-separated channels to return besides the x column. Defaults to
            every channel the objective carries.
        - name: x
          in: query
          required: false
          schema:
            type: string
            description: Column plotted on x, and windowed on
            default: Time [s]
            title: X
          description: Column plotted on x, and windowed on
        - name: max_points
          in: query
          required: false
          schema:
            anyOf:
              - type: integer
                minimum: 1
              - type: 'null'
            description: Row ceiling, from the plot's measured width
            title: Max Points
          description: Row ceiling, from the plot's measured width
        - name: x_min
          in: query
          required: false
          schema:
            anyOf:
              - type: number
              - type: 'null'
            description: Window lower bound, in x's units
            title: X Min
          description: Window lower bound, in x's units
        - name: x_max
          in: query
          required: false
          schema:
            anyOf:
              - type: number
              - type: 'null'
            description: Window upper bound, in x's units
            title: X Max
          description: Window upper bound, in x's units
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    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

````