@archastro/sdk
    Preparing search index...

    Interface ConfigKindSchema

    The JSON Schema definition and sample YAML for a specific config kind, used to validate and scaffold new configs of that kind.

    interface ConfigKindSchema {
        json_schema?: Record<string, unknown>;
        kind: string;
        sample_yaml?: string;
    }
    Index

    Properties

    json_schema?: Record<string, unknown>

    JSON Schema object describing the valid structure of a config of this kind. null when no schema has been registered for this kind.

    kind: string

    The config kind identifier (e.g., "Agent", "WorkflowGraph"). Matches the kind field on config objects.

    sample_yaml?: string

    A sample YAML document illustrating a minimal valid config of this kind. null when no sample has been registered for this kind.