@toolproof-npm/schema 0.1.59 → 0.1.61

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.
@@ -745,11 +745,16 @@
745
745
  "$schema": "https://json-schema.org/draft/2020-12/schema",
746
746
  "type": "object",
747
747
  "required": [
748
- "identity"
748
+ "identity",
749
+ "recognizerUri"
749
750
  ],
750
751
  "properties": {
751
752
  "identity": {
752
753
  "$ref": "#/$defs/ResourceFormatIdentity"
754
+ },
755
+ "recognizerUri": {
756
+ "type": "string",
757
+ "format": "uri"
753
758
  }
754
759
  },
755
760
  "allOf": [
@@ -896,11 +896,16 @@
896
896
  "$schema": "https://json-schema.org/draft/2020-12/schema",
897
897
  "type": "object",
898
898
  "required": [
899
- "identity"
899
+ "identity",
900
+ "recognizerUri"
900
901
  ],
901
902
  "properties": {
902
903
  "identity": {
903
904
  "$ref": "#/$defs/ResourceFormatIdentity"
905
+ },
906
+ "recognizerUri": {
907
+ "type": "string",
908
+ "format": "uri"
904
909
  }
905
910
  },
906
911
  "allOf": [
@@ -856,10 +856,15 @@
856
856
  "properties": {
857
857
  "identity": {
858
858
  "$ref": "#/$defs/ResourceFormatIdentity"
859
+ },
860
+ "recognizerUri": {
861
+ "type": "string",
862
+ "format": "uri"
859
863
  }
860
864
  },
861
865
  "required": [
862
- "identity"
866
+ "identity",
867
+ "recognizerUri"
863
868
  ],
864
869
  "$anchor": "ResourceFormat"
865
870
  },
@@ -9,10 +9,15 @@
9
9
  "properties": {
10
10
  "identity": {
11
11
  "$ref": "#/$defs/ResourceFormatIdentity"
12
+ },
13
+ "recognizerUri": {
14
+ "type": "string",
15
+ "format": "uri"
12
16
  }
13
17
  },
14
18
  "required": [
15
- "identity"
19
+ "identity",
20
+ "recognizerUri"
16
21
  ],
17
22
  "$anchor": "ResourceFormat",
18
23
  "$defs": {
@@ -230,6 +230,7 @@ export type ResourceMetaBase =
230
230
  export type ResourceFormat =
231
231
  {
232
232
  identity: ResourceFormatIdentity;
233
+ recognizerUri: string;
233
234
  } & Documented;
234
235
  /**
235
236
  * This interface was referenced by `GenesisJson`'s JSON-Schema
@@ -554,6 +555,7 @@ export type RoleMap = Record<ResourceRoleIdentity, ResourceRoleValue>;
554
555
  export type Normalized =
555
556
  {
556
557
  identity: ResourceFormatIdentity;
558
+ recognizerUri: string;
557
559
  } & Documented;
558
560
  export type ResourceFormatIdentity =
559
561
  `FORMAT-${string}`;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@toolproof-npm/schema",
3
- "version": "0.1.59",
3
+ "version": "0.1.61",
4
4
  "description": "JSON schemas and TypeScript types for ToolProof",
5
5
  "keywords": [
6
6
  "toolproof",