UNPKG

@zhanghongping/json-sage-workflow

Version:

智能的JSON处理工作流系统,提供自动化监控、验证和转换功能

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