Interface GraphSchema

interface GraphSchema {
    config_schema?: null | JSONSchema7;
    graph_id: string;
    input_schema?: null | JSONSchema7;
    output_schema?: null | JSONSchema7;
    state_schema?: null | JSONSchema7;
}

Properties

config_schema?: null | JSONSchema7

The schema for the graph config. Missing if unable to generate JSON schema from graph.

graph_id: string

The ID of the graph.

input_schema?: null | JSONSchema7

The schema for the input state. Missing if unable to generate JSON schema from graph.

output_schema?: null | JSONSchema7

The schema for the output state. Missing if unable to generate JSON schema from graph.

state_schema?: null | JSONSchema7

The schema for the graph state. Missing if unable to generate JSON schema from graph.