UNPKG

@zhanghongping/json-sage-workflow-cli

Version:

An intelligent JSON processing workflow system with improved error handling and configuration

11 lines (10 loc) 229 B
export interface SchemaOptions { includeDescriptions?: boolean; includeExamples?: boolean; required?: string[]; format?: boolean; } export interface ValidationResult { valid: boolean; errors?: string[]; }