UNPKG

@zhanghongping/json-sage-workflow-cli

Version:

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

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