AutoBE
    Preparing search index...

    Interface IAutoBePlaygroundSwagger

    Reusable Swagger/OpenAPI backend registered in the playground.

    Swagger chatbot sessions can bind one or more of these records with session-local headers.

    Samchon

    interface IAutoBePlaygroundSwagger {
        created_at: string & Format<"date-time">;
        id: string & Format<"uuid">;
        name: string;
        server_url: string;
        swagger: string;
        updated_at: string & Format<"date-time">;
    }

    Hierarchy (View Summary)

    Index

    Properties

    created_at: string & Format<"date-time">

    Timestamp when this Swagger backend was registered.

    id: string & Format<"uuid">

    Unique identifier for this Swagger backend.

    name: string

    Human-readable backend name used as the Agentica controller name.

    server_url: string

    Target API server base URL.

    swagger: string

    Original Swagger/OpenAPI file content, JSON or YAML.

    updated_at: string & Format<"date-time">

    Timestamp when this Swagger backend was last changed.