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

# Audit Bundle

> Independent-audit bundle (DPDP Rule 13(2)): DPIA substrate + every
regulator pack + readiness snapshot, in one signed artifact for the
auditor. Auditor-role principals (read-only) can pull this without
being able to change anything — the 'hand the auditor a login' story
extended to a portable, verifiable export.



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/vidhi/audit-bundle
openapi: 3.1.0
info:
  title: Sakshi — Agent Governance API
  description: >-
    Registry (KYA), decision flight recorder, bounded autonomy, evidence packs,
    fairness screens. Auth: bearer ingest keys create evidence; OIDC JWTs with
    governance roles mutate state.
  version: 0.1.0
servers:
  - url: https://demo.rotavision.com
    description: Public demo (read-only, synthetic data)
  - url: https://{host}
    description: Your Sakshi deployment (single-tenant, in your environment)
    variables:
      host:
        default: sakshi.your-company.internal
security:
  - bearerAuth: []
paths:
  /api/v1/vidhi/audit-bundle:
    get:
      tags:
        - vidhi
      summary: Audit Bundle
      description: |-
        Independent-audit bundle (DPDP Rule 13(2)): DPIA substrate + every
        regulator pack + readiness snapshot, in one signed artifact for the
        auditor. Auditor-role principals (read-only) can pull this without
        being able to change anything — the 'hand the auditor a login' story
        extended to a portable, verifiable export.
      operationId: audit_bundle_api_v1_vidhi_audit_bundle_get
      parameters:
        - name: signed
          in: query
          required: false
          schema:
            type: boolean
            description: Ed25519 evidence-bundle envelope
            default: true
            title: Signed
          description: Ed25519 evidence-bundle envelope
        - name: window_days
          in: query
          required: false
          schema:
            type: integer
            maximum: 730
            minimum: 1
            default: 90
            title: Window Days
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
                title: Response Audit Bundle Api V1 Vidhi Audit Bundle Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Ingest API key or OIDC JWT. See /authentication.

````