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

# List runnable conformance suites

> List the conformance test suites you can run against a connection, each with its OCPI version and a short description of what it checks.



## OpenAPI

````yaml /openapi/public-api.json get /testing/suites
openapi: 3.1.0
info:
  title: ChargerDojo public API
  version: 1.0.0
  description: >-
    Automate ChargerDojo with a cdojo_ API key: register partner endpoints, run
    conformance suites and charging journeys, and read the graded reports.
servers:
  - url: https://chargerdojo.com/api/v1
security:
  - apiKey: []
tags:
  - name: Connections
  - name: Testing
  - name: Reports
  - name: Usage
  - name: Journeys
paths:
  /testing/suites:
    get:
      tags:
        - Testing
      summary: List runnable conformance suites
      description: >-
        List the conformance test suites you can run against a connection, each
        with its OCPI version and a short description of what it checks.
      operationId: suites_list
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SuiteList'
        '500':
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security: []
components:
  schemas:
    SuiteList:
      type: object
      required:
        - suites
        - total_suites
      properties:
        endpoint:
          type: string
        version:
          type: string
        description:
          type: string
        total_suites:
          type: integer
        suites:
          type: array
          items:
            type: object
            required:
              - id
              - name
              - module
              - version
              - test_count
            properties:
              id:
                type: string
              name:
                type: string
              description:
                type: string
              module:
                type: string
              version:
                type: string
                enum:
                  - 2.1.1
                  - '2.2'
                  - 2.2.1
                  - 2.3.0
              tags:
                type: array
                items:
                  type: string
              group:
                type: string
              test_count:
                type: integer
              order:
                type: integer
              mandatory:
                type: boolean
            additionalProperties: true
    Error:
      type: object
      required:
        - success
        - message
      properties:
        success:
          type: boolean
          enum:
            - false
        message:
          type: string
        status:
          type: string
          enum:
            - error
        code:
          type: string
        timestamp:
          type: string
          format: date-time
        capability:
          type: string
          enum:
            - external-endpoints
            - ci-handoff
            - saved-presets
            - load-testing
            - direct-payment
            - bookings
            - scheduled-runs
        limit:
          type: object
          required:
            - id
            - used
            - cap
          properties:
            id:
              type: string
              enum:
                - connections
                - run-concurrency
            used:
              type: integer
            cap:
              type: integer
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer
      description: A cdojo_... API key created in the app under Settings.

````