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

# Get Severity Schema

> The factor/level schema itself — so the UI can render axes, legends and tooltips
without hardcoding a copy of the taxonomy that will silently drift from the engine.



## OpenAPI

````yaml /openapi.json get /v1/severity/factors
openapi: 3.1.0
info:
  description: Causeloop Platform Backend
  title: Causeloop API
  version: 1.0.0
servers: []
security: []
paths:
  /v1/severity/factors:
    get:
      tags:
        - severity
      summary: Get Severity Schema
      description: >-
        The factor/level schema itself — so the UI can render axes, legends and
        tooltips

        without hardcoding a copy of the taxonomy that will silently drift from
        the engine.
      operationId: get_severity_schema_v1_severity_factors_get
      responses:
        '200':
          content:
            application/json:
              schema:
                additionalProperties: true
                title: Response Get Severity Schema V1 Severity Factors Get
                type: object
          description: Successful Response
      security:
        - HTTPBearer: []
components:
  securitySchemes:
    HTTPBearer:
      scheme: bearer
      type: http

````