> ## Documentation Index
> Fetch the complete documentation index at: https://docs.dataerai.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get apivizsafe viz specschema

> GET /viz/safe-viz-spec/schema — returns the SafeVizSpec JSON schema.

The frontend caches this for the session and uses it to drive
form validation. Authentication required so the schema (and the
enumerated module / scale lists) doesn't leak via the public web.



## OpenAPI

````yaml /api-reference/openapi.yaml get /api/viz/safe-viz-spec/schema/
openapi: 3.0.3
info:
  title: Console API
  version: 1.0.0
  description: Central control plane API for the Dataerai platform.
servers:
  - url: https://{server}
    description: Your Dataerai deployment (the API is served under /api)
    variables:
      server:
        default: your-deployment.dataerai.com
        description: Host of your Dataerai deployment
security: []
paths:
  /api/viz/safe-viz-spec/schema/:
    get:
      tags:
        - api
      description: |-
        GET /viz/safe-viz-spec/schema — returns the SafeVizSpec JSON schema.

        The frontend caches this for the session and uses it to drive
        form validation. Authentication required so the schema (and the
        enumerated module / scale lists) doesn't leak via the public web.
      operationId: api_viz_safe_viz_spec_schema_retrieve
      responses:
        '200':
          content:
            application/json:
              schema:
                type: object
                additionalProperties: {}
          description: ''
      security:
        - cookieAuthCsrfExempt: []
components: {}

````