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

> Return the schema for studies.

Includes ``create_schema`` (POST body), ``update_schema``
(PATCH body), ``response_schema`` (GET response), and
``mapping_endpoints`` listing the assign/remove paths for
simulations and measurements (studies live under
``/projects/{project_id}/studies``).



## OpenAPI

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

        Includes ``create_schema`` (POST body), ``update_schema``
        (PATCH body), ``response_schema`` (GET response), and
        ``mapping_endpoints`` listing the assign/remove paths for
        simulations and measurements (studies live under
        ``/projects/{project_id}/studies``).
      operationId: get_study_schema_discovery_schemas_study_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}

````