UNPKG

json-schema-library

Version:

Customizable and hackable json-validator and json-schema utilities for traversal, data generation and validation

12 lines (11 loc) 324 B
export function createOneOfSchemaResult(schema, oneOfSchema, oneOfIndex) { const childSchema = { ...oneOfSchema }; Object.defineProperty(childSchema, "getOneOfOrigin", { enumerable: false, value: () => ({ index: oneOfIndex, schema }) }); return childSchema; }