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

# Submit Spec Validation

> Submit a Spec Validation Gate record for a spec in 'approved' status.

Runs deterministic coverage gates as pre-requisite. If they pass, computes
outcome from thresholds + recommendation: failed if any threshold violated
or recommendation=reject; success only if all thresholds OK and approve.
On success, atomically promotes spec.status to validated.



## OpenAPI

````yaml /openapi.json post /api/v1/specs/{spec_id}/validation
openapi: 3.1.0
info:
  description: >-
    Okto Pulse REST API schema generated from okto-pulse-core 0.2.0 source for
    docs.oktolabs.ai.
  title: Okto Pulse
  version: 0.2.0
servers: []
security: []
paths:
  /api/v1/specs/{spec_id}/validation:
    post:
      tags:
        - specs
      summary: Submit Spec Validation
      description: >-
        Submit a Spec Validation Gate record for a spec in 'approved' status.


        Runs deterministic coverage gates as pre-requisite. If they pass,
        computes

        outcome from thresholds + recommendation: failed if any threshold
        violated

        or recommendation=reject; success only if all thresholds OK and approve.

        On success, atomically promotes spec.status to validated.
      operationId: submit_spec_validation_api_v1_specs__spec_id__validation_post
      parameters:
        - in: path
          name: spec_id
          required: true
          schema:
            title: Spec Id
            type: string
      requestBody:
        content:
          application/json:
            schema:
              additionalProperties: true
              title: Data
              type: object
        required: true
      responses:
        '201':
          content:
            application/json:
              schema: {}
          description: Successful Response
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
      security:
        - HTTPBearer: []
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
    ValidationError:
      properties:
        ctx:
          title: Context
          type: object
        input:
          title: Input
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          title: Location
          type: array
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
      required:
        - loc
        - msg
        - type
      title: ValidationError
      type: object
  securitySchemes:
    HTTPBearer:
      scheme: bearer
      type: http

````