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

> Return the schema for the lab-view occupancy status.

Read-only: ``response_schema`` is the GET
``/projects/{project_id}/lab/status`` response shape. There is no
create/update body (occupancy is derived, not stored).



## OpenAPI

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

        Read-only: ``response_schema`` is the GET
        ``/projects/{project_id}/lab/status`` response shape. There is no
        create/update body (occupancy is derived, not stored).
      operationId: get_lab_schema_discovery_schemas_lab_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}

````