Various utilities for handling JSON Schemas (parse, join, generate, samples)
npm install @nlighten/json-schema-utils
JSONSchemaUtils: {
join: (pathsDescriptors: { targetPath: string; type: TypeSchema; }[], options?: JoinOptions) => TypeSchema;
parse: (schema: TypeSchema, options?: ParsingOptions) => ParsedSchema;
generate: (value: any, options?: GenerateSchemaOptions) => TypeSchema;
};