(schema: JSONSchema7)
| 1060 | } |
| 1061 | |
| 1062 | function isEmptyNotSchema(schema: JSONSchema7): boolean { |
| 1063 | return !!schema.not && typeof schema.not === "object" && Object.keys(schema.not).length === 0; |
| 1064 | } |
| 1065 | |
| 1066 | function mergeObjectSchemas(schemas: JSONSchema7[]): JSONSchema7 | undefined { |
| 1067 | const mergedProperties: Record<string, JSONSchema7Definition> = {}; |
no outgoing calls
no test coverage detected
searching dependent graphs…