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

# List score ranges

> Returns classification ranges (min/max score -> classification) for the protocol.



## OpenAPI

````yaml /openapi.json get /protocols/{id}/score-ranges
openapi: 3.0.1
info:
  title: NextMed's Admin Service
  description: Documentation Admin Service v1.0.0
  contact:
    name: NextMed
    email: medchatbr@gmail.com
  version: 1.0.0
servers:
  - url: http://localhost:8081
    description: Admin Service (local)
  - url: http://localhost:8080/admin-service
    description: Local API (gateway)
security: []
tags:
  - name: User Controller
    description: Endpoints to handle users
  - name: Profile Controller
    description: Endpoints to handle user's profiles
  - name: Institution Controller
    description: Endpoints to handle institutions
  - name: Unity Controller
    description: Endpoints to handle institution's unities
  - name: Specialty Controller
    description: Endpoints to handle the available specialties
  - name: Protocol Controller
    description: >-
      Endpoints to manage clinical protocols (Admin): CRUD protocol, forms,
      questions, options, score ranges
paths:
  /protocols/{id}/score-ranges:
    get:
      tags:
        - Protocol Controller
      summary: List score ranges
      description: >-
        Returns classification ranges (min/max score -> classification) for the
        protocol.
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: List of score ranges
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ProtocolScoreRange'
components:
  schemas:
    ProtocolScoreRange:
      type: object
      properties:
        id:
          type: string
          format: uuid
        protocolId:
          type: string
          format: uuid
        minScore:
          type: number
        maxScore:
          type: number
        classification:
          type: string
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time

````