> ## 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.

# Verify Disposition Endpoint

> Verify a storage disposition (#80 D2) — a signed vault receipt or a
reference key against the configured vault — without ever seeing the
raw value.



## OpenAPI

````yaml /api-reference/openapi.json post /api/v1/vishwas/verify-disposition
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/vishwas/verify-disposition:
    post:
      tags:
        - vishwas
      summary: Verify Disposition Endpoint
      description: |-
        Verify a storage disposition (#80 D2) — a signed vault receipt or a
        reference key against the configured vault — without ever seeing the
        raw value.
      operationId: verify_disposition_endpoint_api_v1_vishwas_verify_disposition_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DispositionIn'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                additionalProperties: true
                type: object
                title: >-
                  Response Verify Disposition Endpoint Api V1 Vishwas Verify
                  Disposition Post
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    DispositionIn:
      properties:
        reference_key:
          anyOf:
            - type: string
            - type: 'null'
          title: Reference Key
        vault_role:
          anyOf:
            - type: string
            - type: 'null'
          title: Vault Role
        receipt:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Receipt
      type: object
      title: DispositionIn
    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.

````