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

> Return the schema for custom electrochemical models.

Includes ``create_schema`` (POST /models body),
``update_schema`` (PATCH /models/{id} body),
``response_schema`` (GET response), and
``add_custom_variable_schema`` (POST
/models/{id}/custom-variables body).



## OpenAPI

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

        Includes ``create_schema`` (POST /models body),
        ``update_schema`` (PATCH /models/{id} body),
        ``response_schema`` (GET response), and
        ``add_custom_variable_schema`` (POST
        /models/{id}/custom-variables body).
      operationId: get_model_schema_discovery_schemas_model_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}

````