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

# Get one batch item

> Get one batch item with live execution state projected from its child Run.

Delegates to ``QueryProxy.search`` with an ``id.eq`` filter so the full
framework surface (``fields``, ``embed=run`` including nested embeds
like ``embed=run(logs,node_runs)``) works identically to the list
endpoint. Single-row lookup — ``limit=1``.



## OpenAPI

````yaml /api/openapi.public.json get /v1/batches/{batch_id}/items/{id}
openapi: 3.1.0
info:
  title: Runflow API
  version: 0.1.0
  description: >-
    Public Runflow API. Run AI image and video models, manage media, inspect run
    history, and configure webhooks. Auth: HTTP Bearer.


    This document is the customer integration surface only. Admin and internal
    operations plus generic system reference-data tables are intentionally
    omitted.
servers:
  - url: https://api.runflow.io
    description: Production
security:
  - HTTPBearer: []
tags:
  - name: Models
    description: >-
      Browse the model catalog and dispatch model runs. The primary surface for
      running AI image and video generation.
  - name: Runs
    description: >-
      Inspect, cancel, and re-run model executions. Fetch logs, node-runs, and
      callback delivery history.
  - name: Media
    description: >-
      Upload images and videos as inputs. Organize assets into folders.
      Three-step presigned upload flow for large files.
  - name: Batches
    description: >-
      Run a model on multiple inputs in one request. Includes per-item status
      and a single callback when the batch completes.
  - name: Evaluations
    description: >-
      Submit an image generated anywhere for automated quality evaluation, then
      read a pass verdict, a 0-1 score, and structured issues. No Runflow run
      required.
  - name: Webhooks
    description: >-
      Subscribe to platform events. Inspect delivery history, redeliver failed
      callbacks, manage signing secrets.
  - name: Account
    description: Read your account identity and credit balance.
  - name: Status
    description: Health and readiness probes for the API.
paths:
  /v1/batches/{batch_id}/items/{id}:
    get:
      tags:
        - Batches
      summary: Get one batch item
      description: >-
        Get one batch item with live execution state projected from its child
        Run.


        Delegates to ``QueryProxy.search`` with an ``id.eq`` filter so the full

        framework surface (``fields``, ``embed=run`` including nested embeds

        like ``embed=run(logs,node_runs)``) works identically to the list

        endpoint. Single-row lookup — ``limit=1``.
      operationId: getBatchItem
      parameters:
        - name: batch_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Batch Id
        - name: id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Item Id
        - name: fields
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Fields
        - name: embed
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Embed
        - name: X-Organization-Id
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: X-Organization-Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/models__batch__BatchItem__FullValidator'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    models__batch__BatchItem__FullValidator:
      properties:
        id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Id
        batch_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Batch Id
        sequence_index:
          anyOf:
            - type: integer
            - type: 'null'
          title: Sequence Index
        run_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Run Id
        created_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Created At
        client_ref:
          anyOf:
            - type: string
            - type: 'null'
          title: Client Ref
        status_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Status Code
        input:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Input
        cost:
          anyOf:
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Cost
        output:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Output
        error:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Error
        started_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Started At
        completed_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Completed At
        run:
          anyOf:
            - $ref: '#/components/schemas/models__run__Run__FullValidator'
            - type: 'null'
      type: object
      title: FullValidator
      description: |-
        Response shape for /v1/batches/{id}/items[/{item_id}].

        The flat fields (``client_ref``, ``status_code``, ``input``, ``cost``,
        ``output``, ``error``, timestamps) are projected from ``runs`` via
        the items read model — the router layer populates them; the bare
        ORM row only carries id/batch_id/sequence_index/run_id/created_at.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    models__run__Run__FullValidator:
      properties:
        id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Id
        flow_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Flow Id
        model_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Model Id
        comfyui_workflow_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Comfyui Workflow Id
        target_type:
          anyOf:
            - $ref: '#/components/schemas/RunTargetTypeCodeLiteral'
            - type: 'null'
        target_version:
          anyOf:
            - type: string
            - type: 'null'
          title: Target Version
        org_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Org Id
        status_code:
          anyOf:
            - $ref: '#/components/schemas/RunStatusCodeLiteral'
            - type: 'null'
        source_code:
          anyOf:
            - $ref: '#/components/schemas/RunSourceCodeLiteral'
            - type: 'null'
        input:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Input
        output:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Output
        context:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Context
        duration_ms:
          anyOf:
            - type: integer
            - type: 'null'
          title: Duration Ms
        cost:
          anyOf:
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Cost
        cost_breakdown:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Cost Breakdown
        nodes_total:
          anyOf:
            - type: integer
            - type: 'null'
          title: Nodes Total
        nodes_completed:
          anyOf:
            - type: integer
            - type: 'null'
          title: Nodes Completed
        resolved_template_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Resolved Template Id
        batch_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Batch Id
        client_ref:
          anyOf:
            - type: string
            - type: 'null'
          title: Client Ref
        jurisdiction_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Jurisdiction Code
        flow_version_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Flow Version Id
        request_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Request Id
        created_by:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Created By
        created_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Created At
        started_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Started At
        completed_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Completed At
        callback_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Callback Url
        metadata:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Metadata
        has_logs:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Has Logs
        has_node_runs:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Has Node Runs
        links:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Links
        failure_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Failure Code
          description: >-
            Failure classification (FK to run_failure_codes.code). None on
            successful runs.
        failure_message:
          anyOf:
            - type: string
            - type: 'null'
          title: Failure Message
          description: >-
            Human-readable failure detail. See /v1/runs/{id}/logs for full audit
            history.
        failure_stage_code:
          anyOf:
            - $ref: '#/components/schemas/RunFailureStageCodeLiteral'
            - type: 'null'
          description: >-
            Pipeline stage where the failure originated (FK to
            run_failure_stages.code).
        feedback_is_positive:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Feedback Is Positive
          description: Customer thumb (TRUE = 👍, FALSE = 👎, NULL = no rating yet).
        feedback_reason:
          anyOf:
            - type: string
            - type: 'null'
          title: Feedback Reason
          description: Optional customer-supplied note explaining the feedback.
        source_chat_message_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Source Chat Message Id
          description: Chat message that dispatched this run, if any.
        current_evaluation_summary:
          anyOf:
            - $ref: '#/components/schemas/RunEvaluationSummary'
            - type: 'null'
        node_runs:
          anyOf:
            - items:
                $ref: '#/components/schemas/models__run__FlowNodeRun__FullValidator'
              type: array
            - type: 'null'
          title: Node Runs
        logs:
          anyOf:
            - items:
                $ref: '#/components/schemas/models__run__RunLog__FullValidator'
              type: array
            - type: 'null'
          title: Logs
        model:
          anyOf:
            - $ref: '#/components/schemas/models__model__Model__FullValidator'
            - type: 'null'
        comfyui_workflow:
          anyOf:
            - $ref: >-
                #/components/schemas/models__comfyui__ComfyUIWorkflow__FullValidator
            - type: 'null'
      type: object
      title: FullValidator
      description: Response shape.
    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
    RunTargetTypeCodeLiteral:
      type: string
      enum:
        - model
        - flow
        - comfyui
    RunStatusCodeLiteral:
      type: string
      enum:
        - queued
        - dispatching
        - running
        - succeeded
        - failed
        - cancelled
        - partial_succeeded
    RunSourceCodeLiteral:
      type: string
      enum:
        - playground
        - api
        - flow-node
    RunFailureStageCodeLiteral:
      type: string
      enum:
        - dispatch
        - execution
        - callback
        - reconciliation
    RunEvaluationSummary:
      properties:
        passed:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Passed
          description: >-
            Whether the current evaluation passed overall. ``null`` when the
            evaluator did not emit a verdict.
        score:
          anyOf:
            - type: number
              maximum: 1
              minimum: 0
            - type: 'null'
          title: Score
          description: >-
            Weighted pass rate (0.0-1.0) of the current evaluation. ``null``
            when the evaluator did not emit a score.
        status_code:
          type: string
          const: completed
          title: Status Code
          description: >-
            Status of the current evaluation. Always ``completed`` given the
            current-scope subquery.
      type: object
      required:
        - passed
        - status_code
      title: RunEvaluationSummary
      description: >-
        Slim projection of a run's *current* evaluation, surfaced as the

        ``current_evaluation_summary`` custom embed on ``GET /v1/runs``.


        "Current" = ``status_code == 'completed' AND superseded_at IS NULL``.
        The

        embed loader (``routers/runs._populate_evaluation_summary``) writes

        ``None`` for runs with no current evaluation so the wire shape is

        ``{"current_evaluation_summary": null}`` rather than an absent key once

        the caller opts into the embed. The field is gated behind

        ``evaluations:read`` — see ``_RUN_CUSTOM_EMBED_PERMISSIONS``.


        ``status_code`` is typed as ``Literal["completed"]`` because the
        loader's

        subquery (``RunRepository._current_evaluation``) filters to completed

        rows only; any other value would be a contract violation.
    models__run__FlowNodeRun__FullValidator:
      properties:
        id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Id
        run_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Run Id
        node_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Node Id
        flow_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Flow Id
        state_code:
          anyOf:
            - type: string
            - type: 'null'
          title: State Code
        input:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Input
        output:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Output
        input_signature:
          anyOf:
            - type: string
            - type: 'null'
          title: Input Signature
        preview_type:
          anyOf:
            - type: string
            - type: 'null'
          title: Preview Type
        preview_value:
          anyOf:
            - type: string
            - type: 'null'
          title: Preview Value
        duration_ms:
          anyOf:
            - type: integer
            - type: 'null'
          title: Duration Ms
        cost:
          anyOf:
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Cost
        retry_count:
          anyOf:
            - type: integer
            - type: 'null'
          title: Retry Count
        error_message:
          anyOf:
            - type: string
            - type: 'null'
          title: Error Message
        created_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Created At
        started_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Started At
        completed_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Completed At
      type: object
      title: FullValidator
      description: Response shape.
    models__run__RunLog__FullValidator:
      properties:
        id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Id
        run_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Run Id
        level_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Level Code
        message:
          anyOf:
            - type: string
            - type: 'null'
          title: Message
        timestamp:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Timestamp
        meta:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Meta
        run:
          anyOf:
            - $ref: '#/components/schemas/models__run__Run__FullValidator'
            - type: 'null'
      type: object
      title: FullValidator
      description: Response shape.
    models__model__Model__FullValidator:
      properties:
        id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Id
        org_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Org Id
        model_creator_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Model Creator Id
        slug:
          anyOf:
            - type: string
            - type: 'null'
          title: Slug
        name:
          anyOf:
            - type: string
            - type: 'null'
          title: Name
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
        version:
          anyOf:
            - type: string
            - type: 'null'
          title: Version
        is_public:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Is Public
        is_open_source:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Is Open Source
        icon_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Icon Url
        cover_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Cover Url
        category_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Category Code
        status_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Status Code
        family_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Family Id
        family_variant_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Family Variant Code
        param_count:
          anyOf:
            - type: string
            - type: 'null'
          title: Param Count
        architecture:
          anyOf:
            - type: string
            - type: 'null'
          title: Architecture
        license_code:
          anyOf:
            - type: string
            - type: 'null'
          title: License Code
        max_resolution:
          anyOf:
            - type: string
            - type: 'null'
          title: Max Resolution
        lora_support:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Lora Support
        fine_tuning:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Fine Tuning
        supports_streaming:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Supports Streaming
        paper_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Paper Url
        github_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Github Url
        is_official:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Is Official
        availability_status:
          anyOf:
            - type: string
            - type: 'null'
          title: Availability Status
        seo:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Seo
        notable_features:
          anyOf:
            - items: {}
              type: array
            - type: 'null'
          title: Notable Features
        content:
          anyOf:
            - type: string
            - type: 'null'
          title: Content
        pricing_note:
          anyOf:
            - type: string
            - type: 'null'
          title: Pricing Note
        created_by:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Created By
        created_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Created At
        updated_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Updated At
        deleted_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Deleted At
        deleted_by:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Deleted By
        inputs:
          anyOf:
            - items:
                $ref: '#/components/schemas/models__model__ModelInput__FullValidator'
              type: array
            - type: 'null'
          title: Inputs
        outputs:
          anyOf:
            - items:
                $ref: '#/components/schemas/models__model__ModelOutput__FullValidator'
              type: array
            - type: 'null'
          title: Outputs
        examples:
          anyOf:
            - items:
                $ref: >-
                  #/components/schemas/models__model_content__ModelExample__FullValidator
              type: array
            - type: 'null'
          title: Examples
        faq_entries:
          anyOf:
            - items:
                $ref: >-
                  #/components/schemas/models__model_content__ModelFaqEntry__FullValidator
              type: array
            - type: 'null'
          title: Faq Entries
        pricing:
          anyOf:
            - items:
                $ref: >-
                  #/components/schemas/models__model_content__ModelCustomerPricing__FullValidator
              type: array
            - type: 'null'
          title: Pricing
        related_links:
          anyOf:
            - items:
                $ref: >-
                  #/components/schemas/models__model_content__ModelRelatedLink__FullValidator
              type: array
            - type: 'null'
          title: Related Links
      type: object
      title: FullValidator
      description: Response shape.
    models__comfyui__ComfyUIWorkflow__FullValidator:
      properties:
        id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Id
        org_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Org Id
        slug:
          anyOf:
            - type: string
            - type: 'null'
          title: Slug
        name:
          anyOf:
            - type: string
            - type: 'null'
          title: Name
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
        workflow_json:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Workflow Json
        version:
          anyOf:
            - type: string
            - type: 'null'
          title: Version
        is_public:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Is Public
        status_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Status Code
        created_by:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Created By
        environment:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Environment
        models:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Models
        custom_nodes:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Custom Nodes
        graph:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Graph
        resources:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Resources
        created_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Created At
        updated_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Updated At
        deleted_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Deleted At
        deleted_by:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Deleted By
        category_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Category Code
        gpu_mode:
          anyOf:
            - $ref: '#/components/schemas/ComfyUIGpuModeNameLiteral'
            - type: 'null'
        gpu_current_tier_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Gpu Current Tier Code
        inputs:
          anyOf:
            - items:
                $ref: >-
                  #/components/schemas/models__comfyui__ComfyUIInput__FullValidator
              type: array
            - type: 'null'
          title: Inputs
        outputs:
          anyOf:
            - items:
                $ref: >-
                  #/components/schemas/models__comfyui__ComfyUIOutput__FullValidator
              type: array
            - type: 'null'
          title: Outputs
        gpu_explicit_models:
          anyOf:
            - items:
                $ref: >-
                  #/components/schemas/models__comfyui__ComfyUIWorkflowGpuModel__FullValidator
              type: array
            - type: 'null'
          title: Gpu Explicit Models
      type: object
      title: FullValidator
      description: Response shape.
    models__model__ModelInput__FullValidator:
      properties:
        id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Id
        model_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Model Id
        name:
          anyOf:
            - type: string
            - type: 'null'
          title: Name
        display_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Display Name
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
        variable_type_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Variable Type Code
        default_behavior_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Default Behavior Code
        validator_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Validator Code
        validator_attrs:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Validator Attrs
        is_required:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Is Required
        default_value:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Default Value
        sort_order:
          anyOf:
            - type: integer
            - type: 'null'
          title: Sort Order
        is_featured:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Is Featured
        created_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Created At
        updated_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Updated At
      type: object
      title: FullValidator
      description: Response shape.
    models__model__ModelOutput__FullValidator:
      properties:
        id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Id
        model_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Model Id
        name:
          anyOf:
            - type: string
            - type: 'null'
          title: Name
        display_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Display Name
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
        variable_type_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Variable Type Code
        validator_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Validator Code
        validator_attrs:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Validator Attrs
        sort_order:
          anyOf:
            - type: integer
            - type: 'null'
          title: Sort Order
        created_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Created At
        updated_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Updated At
      type: object
      title: FullValidator
      description: Response shape.
    models__model_content__ModelExample__FullValidator:
      properties:
        id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Id
        model_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Model Id
        title:
          anyOf:
            - type: string
            - type: 'null'
          title: Title
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
        input:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Input
        output:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Output
        status_code:
          anyOf:
            - type: integer
            - type: 'null'
          title: Status Code
        cost:
          anyOf:
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Cost
        start_type:
          anyOf:
            - type: string
            - type: 'null'
          title: Start Type
        timing:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Timing
        duration_ms:
          anyOf:
            - type: integer
            - type: 'null'
          title: Duration Ms
        total_ms:
          anyOf:
            - type: integer
            - type: 'null'
          title: Total Ms
        thumbnail_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Thumbnail Url
        category_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Category Code
        is_featured:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Is Featured
        is_public:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Is Public
        sort_order:
          anyOf:
            - type: integer
            - type: 'null'
          title: Sort Order
        ran_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Ran At
        created_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Created At
        updated_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Updated At
      type: object
      title: FullValidator
      description: Response shape.
    models__model_content__ModelFaqEntry__FullValidator:
      properties:
        id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Id
        model_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Model Id
        question:
          anyOf:
            - type: string
            - type: 'null'
          title: Question
        answer:
          anyOf:
            - type: string
            - type: 'null'
          title: Answer
        sort_order:
          anyOf:
            - type: integer
            - type: 'null'
          title: Sort Order
        created_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Created At
        updated_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Updated At
      type: object
      title: FullValidator
      description: Response shape.
    models__model_content__ModelCustomerPricing__FullValidator:
      properties:
        id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Id
        model_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Model Id
        pricing_model_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Pricing Model Code
        rule_effect_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Rule Effect Code
        model_input_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Model Input Id
        match_value:
          anyOf:
            - {}
            - type: 'null'
          title: Match Value
        dimension_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Dimension Code
        min_value:
          anyOf:
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Min Value
        max_value:
          anyOf:
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Max Value
        price:
          anyOf:
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Price
        currency_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Currency Code
        unit_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Unit Code
        multiplier_label:
          anyOf:
            - type: string
            - type: 'null'
          title: Multiplier Label
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
        sort_order:
          anyOf:
            - type: integer
            - type: 'null'
          title: Sort Order
        disabled_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Disabled At
        measurement_source:
          anyOf:
            - type: string
            - type: 'null'
          title: Measurement Source
        created_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Created At
        updated_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Updated At
      type: object
      title: FullValidator
      description: Response shape.
    models__model_content__ModelRelatedLink__FullValidator:
      properties:
        id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Id
        model_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Model Id
        related_model_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Related Model Id
        sort_order:
          anyOf:
            - type: integer
            - type: 'null'
          title: Sort Order
        created_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Created At
      type: object
      title: FullValidator
      description: Response shape.
    ComfyUIGpuModeNameLiteral:
      type: string
      enum:
        - auto
        - explicit
    models__comfyui__ComfyUIInput__FullValidator:
      properties:
        id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Id
        comfyui_workflow_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Comfyui Workflow Id
        name:
          anyOf:
            - type: string
            - type: 'null'
          title: Name
        display_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Display Name
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
        variable_type_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Variable Type Code
        default_behavior_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Default Behavior Code
        validator_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Validator Code
        validator_attrs:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Validator Attrs
        is_required:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Is Required
        default_value:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Default Value
        sort_order:
          anyOf:
            - type: integer
            - type: 'null'
          title: Sort Order
        comfyui_node_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Comfyui Node Id
        comfyui_field_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Comfyui Field Name
        created_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Created At
        updated_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Updated At
      type: object
      title: FullValidator
      description: Response shape.
    models__comfyui__ComfyUIOutput__FullValidator:
      properties:
        id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Id
        comfyui_workflow_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Comfyui Workflow Id
        name:
          anyOf:
            - type: string
            - type: 'null'
          title: Name
        display_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Display Name
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
        variable_type_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Variable Type Code
        validator_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Validator Code
        validator_attrs:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Validator Attrs
        sort_order:
          anyOf:
            - type: integer
            - type: 'null'
          title: Sort Order
        comfyui_node_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Comfyui Node Id
        comfyui_field_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Comfyui Field Name
        created_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Created At
        updated_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Updated At
      type: object
      title: FullValidator
      description: Response shape.
    models__comfyui__ComfyUIWorkflowGpuModel__FullValidator:
      properties:
        id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Id
        comfyui_workflow_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Comfyui Workflow Id
        gpu_model_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Gpu Model Code
        created_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Created At
      type: object
      title: FullValidator
      description: Response shape — populated on ``?embed=gpu_explicit_models``.
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````