@datadayrepos/json-schema-types 0.0.1-beta.12 → 0.0.1-beta.131
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 +2 -3
- package/package.json +1 -1
package/dist/jsonSchema.d.ts
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import type { ErrSchemaDetail, UISchemaDetail } from './internalScema';
|
|
2
|
-
/** Json schema with extended ui
|
|
2
|
+
/** Json schema join with extended ui & err & and params used for sorting keys in editor */
|
|
3
3
|
export type ExtendedJson7 = {
|
|
4
4
|
enumNames?: string[];
|
|
5
|
-
_collapser?: ExtendedJson7;
|
|
6
5
|
$$itemRef?: string;
|
|
7
6
|
$$itemId?: string;
|
|
8
7
|
$$isSingle?: boolean;
|
|
@@ -40,7 +39,7 @@ export type JSONSchema7Version = string;
|
|
|
40
39
|
* JSON Schema v7 recursive
|
|
41
40
|
* @see https://tools.ietf.org/html/draft-handrews-json-schema-validation-01
|
|
42
41
|
*/
|
|
43
|
-
export type JSONSchema7Definition =
|
|
42
|
+
export type JSONSchema7Definition = JSONSchema7 | boolean;
|
|
44
43
|
export type JSONSchema7 = {
|
|
45
44
|
$id?: string | undefined;
|
|
46
45
|
$ref?: string | undefined;
|