@datadayrepos/json-schema-types 0.0.1-beta.131 → 0.0.1-beta.132
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/jsonSchema.d.ts +1 -1
- package/package.json +1 -1
package/dist/jsonSchema.d.ts
CHANGED
|
@@ -39,7 +39,7 @@ export type JSONSchema7Version = string;
|
|
|
39
39
|
* JSON Schema v7 recursive
|
|
40
40
|
* @see https://tools.ietf.org/html/draft-handrews-json-schema-validation-01
|
|
41
41
|
*/
|
|
42
|
-
export type JSONSchema7Definition =
|
|
42
|
+
export type JSONSchema7Definition = ExtendedJson7 | boolean;
|
|
43
43
|
export type JSONSchema7 = {
|
|
44
44
|
$id?: string | undefined;
|
|
45
45
|
$ref?: string | undefined;
|