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

# List Frameworks



## OpenAPI

````yaml GET /v1/compliance/frameworks
openapi: 3.0.0
info:
  title: Wardin API
  description: AI governance & observability platform — external REST API
  version: '1.0'
  contact: {}
servers: []
security: []
tags: []
paths:
  /v1/compliance/frameworks:
    get:
      tags:
        - compliance
      summary: List available compliance frameworks (one in-force pack each)
      operationId: ComplianceController_listFrameworks
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FrameworkListDto'
      security:
        - bearer: []
components:
  schemas:
    FrameworkListDto:
      type: object
      properties:
        frameworks:
          type: array
          items:
            $ref: '#/components/schemas/FrameworkSummaryDto'
      required:
        - frameworks
    FrameworkSummaryDto:
      type: object
      properties:
        framework:
          type: string
          example: eu_ai_act
        version:
          type: string
          example: v1
        title:
          type: string
          example: EU AI Act — automatic logging & deployer duties
        status:
          type: string
          example: draft
          enum:
            - draft
            - reviewed
        effectiveDate:
          type: string
          example: '2026-07-09'
        controlCount:
          type: number
          example: 3
        packHash:
          type: string
          example: b7e1c2f4a8d6e0f3c1a9b5d7e2f4a6c8d0b2e4f6a8c0d2e4f6a8c0d2e4f6a8c0
          description: sha256 of the pack’s raw YAML bytes.
      required:
        - framework
        - version
        - title
        - status
        - effectiveDate
        - controlCount
        - packHash
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````