Variable configKindSchemaSchemaConst
configKindSchemaSchema: ZodObject<
{
json_schema: ZodOptional<
ZodRecord<ZodString, ZodType<{} | null, ZodTypeDef, {} | null>>,
>;
kind: ZodString;
sample_yaml: ZodOptional<ZodString>;
},
"strip",
ZodTypeAny,
{
json_schema?: Record<string, {} | null>;
kind: string;
sample_yaml?: string;
},
{
json_schema?: Record<string, {} | null>;
kind: string;
sample_yaml?: string;
},
> = ...
Runtime validator for ConfigKindSchema.