Automation Preflight API Acceptance Pack API

The Acceptance Pack API from Automation Preflight API — 1 operation(s) for acceptance pack.

OpenAPI Specification

automation-preflight-api-acceptance-pack-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: TinyOps Automation Integration Preflight Acceptance Pack API
  version: 1.1.0
  description: Inspect a public page for deterministic automation and integration-readiness evidence.
servers:
- url: https://preflight.tinyopsstudio.com
tags:
- name: Acceptance Pack
paths:
  /acceptance-pack:
    post:
      operationId: buildAutomationAcceptancePack
      summary: Build an implementation-ready automation acceptance pack
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              additionalProperties: false
              required:
              - url
              properties:
                url:
                  type: string
                  format: uri
                  maxLength: 2048
                objective:
                  type: string
                  maxLength: 500
      responses:
        '200':
          description: Preflight evidence plus launch gates, acceptance tests, and a prioritized remediation backlog
        '400':
          description: Invalid or prohibited target URL
        '403':
          description: Target explicitly excludes this crawler
        '415':
          description: Target is not an HTML page
        '422':
          description: Target could not be resolved safely
        '429':
          description: Rate limit exceeded
      tags:
      - Acceptance Pack