> ## 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 Optimization Schema

> Return the schema for design optimization runs.

Optimization requests use a flat ``run`` body (top-level
``project_id``, ``name``, ``cell_spec_id``,
``optimization_template_id``) plus a nested ``config``
object validated by the design-optimization config schema.



## OpenAPI

````yaml https://api.ionworks.com/openapi.json get /discovery/schemas/optimization
openapi: 3.1.0
info:
  title: FastAPI
  version: 0.1.0
servers:
  - url: https://api.ionworks.com
    description: Production
security: []
paths:
  /discovery/schemas/optimization:
    get:
      tags:
        - discovery
      summary: Get Optimization Schema
      description: |-
        Return the schema for design optimization runs.

        Optimization requests use a flat ``run`` body (top-level
        ``project_id``, ``name``, ``cell_spec_id``,
        ``optimization_template_id``) plus a nested ``config``
        object validated by the design-optimization config schema.
      operationId: get_optimization_schema_discovery_schemas_optimization_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}

````