@lincs.project/webannotation-schema 1.4.0 → 1.6.0
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/index.d.mts +194 -48
- package/dist/index.d.ts +194 -48
- package/dist/index.js +46 -22
- package/dist/index.mjs +44 -22
- package/dist/v1/jsonld/context.jsonld +11 -8
- package/dist/v1/jsonld/defs.jsonld +37 -15
- package/dist/v1/standalone/linc-wa-validator.js +1 -1
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -19,29 +19,32 @@ declare const schemaContext: {
|
|
|
19
19
|
wikidata: string;
|
|
20
20
|
crm: string;
|
|
21
21
|
crmdig: string;
|
|
22
|
-
|
|
22
|
+
additionalType: {
|
|
23
23
|
'@type': string;
|
|
24
24
|
'@id': string;
|
|
25
25
|
};
|
|
26
|
-
|
|
27
|
-
description: string;
|
|
28
|
-
precision: {
|
|
26
|
+
certainty: {
|
|
29
27
|
'@type': string;
|
|
30
28
|
'@id': string;
|
|
31
29
|
};
|
|
32
|
-
|
|
33
|
-
|
|
30
|
+
contributor: string;
|
|
31
|
+
description: string;
|
|
32
|
+
entityType: {
|
|
34
33
|
'@type': string;
|
|
35
34
|
'@id': string;
|
|
36
35
|
};
|
|
37
|
-
|
|
36
|
+
identifiedBy: string;
|
|
37
|
+
precision: {
|
|
38
38
|
'@type': string;
|
|
39
39
|
'@id': string;
|
|
40
40
|
};
|
|
41
|
-
|
|
41
|
+
softwareVersion: string;
|
|
42
|
+
status: {
|
|
42
43
|
'@type': string;
|
|
43
44
|
'@id': string;
|
|
44
45
|
};
|
|
46
|
+
title: string;
|
|
47
|
+
usedSpecificObject: string;
|
|
45
48
|
approved: string;
|
|
46
49
|
citing: string;
|
|
47
50
|
correcting: string;
|
|
@@ -67,18 +70,21 @@ type User = z.infer<typeof User>;
|
|
|
67
70
|
declare const creatorSchema: JSONSchemaType<User>;
|
|
68
71
|
declare const Software: z.ZodObject<{
|
|
69
72
|
id: z.ZodString;
|
|
70
|
-
type: z.
|
|
73
|
+
type: z.ZodLiteral<"Software">;
|
|
74
|
+
usedSpecificObject: z.ZodOptional<z.ZodString>;
|
|
71
75
|
label: z.ZodString;
|
|
72
76
|
softwareVersion: z.ZodOptional<z.ZodString>;
|
|
73
77
|
}, "strip", z.ZodTypeAny, {
|
|
74
78
|
id: string;
|
|
75
|
-
type:
|
|
79
|
+
type: "Software";
|
|
76
80
|
label: string;
|
|
81
|
+
usedSpecificObject?: string | undefined;
|
|
77
82
|
softwareVersion?: string | undefined;
|
|
78
83
|
}, {
|
|
79
84
|
id: string;
|
|
80
|
-
type:
|
|
85
|
+
type: "Software";
|
|
81
86
|
label: string;
|
|
87
|
+
usedSpecificObject?: string | undefined;
|
|
82
88
|
softwareVersion?: string | undefined;
|
|
83
89
|
}>;
|
|
84
90
|
type Software = z.infer<typeof Software>;
|
|
@@ -1114,23 +1120,61 @@ declare const formatSchema: JSONSchemaType<Format>;
|
|
|
1114
1120
|
declare const Language: z.ZodString;
|
|
1115
1121
|
type Language = z.infer<typeof Language>;
|
|
1116
1122
|
declare const languageSchema: JSONSchemaType<Language>;
|
|
1123
|
+
declare const IdentifiedBy: z.ZodObject<{
|
|
1124
|
+
id: z.ZodString;
|
|
1125
|
+
type: z.ZodLiteral<"crm:E33_E41_Linguistic_Appellation">;
|
|
1126
|
+
title: z.ZodString;
|
|
1127
|
+
}, "strip", z.ZodTypeAny, {
|
|
1128
|
+
id: string;
|
|
1129
|
+
type: "crm:E33_E41_Linguistic_Appellation";
|
|
1130
|
+
title: string;
|
|
1131
|
+
}, {
|
|
1132
|
+
id: string;
|
|
1133
|
+
type: "crm:E33_E41_Linguistic_Appellation";
|
|
1134
|
+
title: string;
|
|
1135
|
+
}>;
|
|
1136
|
+
type IdentifiedBy = z.infer<typeof IdentifiedBy>;
|
|
1117
1137
|
declare const Source: z.ZodObject<{
|
|
1118
1138
|
id: z.ZodString;
|
|
1139
|
+
type: z.ZodLiteral<"crm:D1_Digital_Object">;
|
|
1119
1140
|
format: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
1141
|
+
identifiedBy: z.ZodOptional<z.ZodObject<{
|
|
1142
|
+
id: z.ZodString;
|
|
1143
|
+
type: z.ZodLiteral<"crm:E33_E41_Linguistic_Appellation">;
|
|
1144
|
+
title: z.ZodString;
|
|
1145
|
+
}, "strip", z.ZodTypeAny, {
|
|
1146
|
+
id: string;
|
|
1147
|
+
type: "crm:E33_E41_Linguistic_Appellation";
|
|
1148
|
+
title: string;
|
|
1149
|
+
}, {
|
|
1150
|
+
id: string;
|
|
1151
|
+
type: "crm:E33_E41_Linguistic_Appellation";
|
|
1152
|
+
title: string;
|
|
1153
|
+
}>>;
|
|
1120
1154
|
language: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
1121
|
-
title: z.ZodOptional<z.ZodString>;
|
|
1122
1155
|
}, "strip", z.ZodTypeAny, {
|
|
1123
1156
|
id: string;
|
|
1157
|
+
type: "crm:D1_Digital_Object";
|
|
1124
1158
|
format?: string | string[] | undefined;
|
|
1159
|
+
identifiedBy?: {
|
|
1160
|
+
id: string;
|
|
1161
|
+
type: "crm:E33_E41_Linguistic_Appellation";
|
|
1162
|
+
title: string;
|
|
1163
|
+
} | undefined;
|
|
1125
1164
|
language?: string | string[] | undefined;
|
|
1126
|
-
title?: string | undefined;
|
|
1127
1165
|
}, {
|
|
1128
1166
|
id: string;
|
|
1167
|
+
type: "crm:D1_Digital_Object";
|
|
1129
1168
|
format?: string | string[] | undefined;
|
|
1169
|
+
identifiedBy?: {
|
|
1170
|
+
id: string;
|
|
1171
|
+
type: "crm:E33_E41_Linguistic_Appellation";
|
|
1172
|
+
title: string;
|
|
1173
|
+
} | undefined;
|
|
1130
1174
|
language?: string | string[] | undefined;
|
|
1131
|
-
title?: string | undefined;
|
|
1132
1175
|
}>;
|
|
1133
1176
|
type Source = z.infer<typeof Source>;
|
|
1177
|
+
declare const indentifyBySchema: JSONSchemaType<IdentifiedBy>;
|
|
1134
1178
|
declare const sourceSchema: JSONSchemaType<Source>;
|
|
1135
1179
|
|
|
1136
1180
|
declare const Target: z.ZodObject<{
|
|
@@ -1138,34 +1182,60 @@ declare const Target: z.ZodObject<{
|
|
|
1138
1182
|
type: z.ZodTuple<[z.ZodLiteral<"SpecificResource">, z.ZodLiteral<"crm:E73_Information_Object">], null>;
|
|
1139
1183
|
source: z.ZodObject<{
|
|
1140
1184
|
id: z.ZodString;
|
|
1185
|
+
type: z.ZodLiteral<"crm:D1_Digital_Object">;
|
|
1141
1186
|
format: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
1187
|
+
identifiedBy: z.ZodOptional<z.ZodObject<{
|
|
1188
|
+
id: z.ZodString;
|
|
1189
|
+
type: z.ZodLiteral<"crm:E33_E41_Linguistic_Appellation">;
|
|
1190
|
+
title: z.ZodString;
|
|
1191
|
+
}, "strip", z.ZodTypeAny, {
|
|
1192
|
+
id: string;
|
|
1193
|
+
type: "crm:E33_E41_Linguistic_Appellation";
|
|
1194
|
+
title: string;
|
|
1195
|
+
}, {
|
|
1196
|
+
id: string;
|
|
1197
|
+
type: "crm:E33_E41_Linguistic_Appellation";
|
|
1198
|
+
title: string;
|
|
1199
|
+
}>>;
|
|
1142
1200
|
language: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
1143
|
-
title: z.ZodOptional<z.ZodString>;
|
|
1144
1201
|
}, "strip", z.ZodTypeAny, {
|
|
1145
1202
|
id: string;
|
|
1203
|
+
type: "crm:D1_Digital_Object";
|
|
1146
1204
|
format?: string | string[] | undefined;
|
|
1205
|
+
identifiedBy?: {
|
|
1206
|
+
id: string;
|
|
1207
|
+
type: "crm:E33_E41_Linguistic_Appellation";
|
|
1208
|
+
title: string;
|
|
1209
|
+
} | undefined;
|
|
1147
1210
|
language?: string | string[] | undefined;
|
|
1148
|
-
title?: string | undefined;
|
|
1149
1211
|
}, {
|
|
1150
1212
|
id: string;
|
|
1213
|
+
type: "crm:D1_Digital_Object";
|
|
1151
1214
|
format?: string | string[] | undefined;
|
|
1215
|
+
identifiedBy?: {
|
|
1216
|
+
id: string;
|
|
1217
|
+
type: "crm:E33_E41_Linguistic_Appellation";
|
|
1218
|
+
title: string;
|
|
1219
|
+
} | undefined;
|
|
1152
1220
|
language?: string | string[] | undefined;
|
|
1153
|
-
title?: string | undefined;
|
|
1154
1221
|
}>;
|
|
1155
1222
|
renderedVia: z.ZodOptional<z.ZodObject<{
|
|
1156
1223
|
id: z.ZodString;
|
|
1157
|
-
type: z.
|
|
1224
|
+
type: z.ZodLiteral<"Software">;
|
|
1225
|
+
usedSpecificObject: z.ZodOptional<z.ZodString>;
|
|
1158
1226
|
label: z.ZodString;
|
|
1159
1227
|
softwareVersion: z.ZodOptional<z.ZodString>;
|
|
1160
1228
|
}, "strip", z.ZodTypeAny, {
|
|
1161
1229
|
id: string;
|
|
1162
|
-
type:
|
|
1230
|
+
type: "Software";
|
|
1163
1231
|
label: string;
|
|
1232
|
+
usedSpecificObject?: string | undefined;
|
|
1164
1233
|
softwareVersion?: string | undefined;
|
|
1165
1234
|
}, {
|
|
1166
1235
|
id: string;
|
|
1167
|
-
type:
|
|
1236
|
+
type: "Software";
|
|
1168
1237
|
label: string;
|
|
1238
|
+
usedSpecificObject?: string | undefined;
|
|
1169
1239
|
softwareVersion?: string | undefined;
|
|
1170
1240
|
}>>;
|
|
1171
1241
|
selector: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
@@ -1722,14 +1792,20 @@ declare const Target: z.ZodObject<{
|
|
|
1722
1792
|
type: ["SpecificResource", "crm:E73_Information_Object"];
|
|
1723
1793
|
source: {
|
|
1724
1794
|
id: string;
|
|
1795
|
+
type: "crm:D1_Digital_Object";
|
|
1725
1796
|
format?: string | string[] | undefined;
|
|
1797
|
+
identifiedBy?: {
|
|
1798
|
+
id: string;
|
|
1799
|
+
type: "crm:E33_E41_Linguistic_Appellation";
|
|
1800
|
+
title: string;
|
|
1801
|
+
} | undefined;
|
|
1726
1802
|
language?: string | string[] | undefined;
|
|
1727
|
-
title?: string | undefined;
|
|
1728
1803
|
};
|
|
1729
1804
|
renderedVia?: {
|
|
1730
1805
|
id: string;
|
|
1731
|
-
type:
|
|
1806
|
+
type: "Software";
|
|
1732
1807
|
label: string;
|
|
1808
|
+
usedSpecificObject?: string | undefined;
|
|
1733
1809
|
softwareVersion?: string | undefined;
|
|
1734
1810
|
} | undefined;
|
|
1735
1811
|
selector?: {
|
|
@@ -1866,14 +1942,20 @@ declare const Target: z.ZodObject<{
|
|
|
1866
1942
|
type: ["SpecificResource", "crm:E73_Information_Object"];
|
|
1867
1943
|
source: {
|
|
1868
1944
|
id: string;
|
|
1945
|
+
type: "crm:D1_Digital_Object";
|
|
1869
1946
|
format?: string | string[] | undefined;
|
|
1947
|
+
identifiedBy?: {
|
|
1948
|
+
id: string;
|
|
1949
|
+
type: "crm:E33_E41_Linguistic_Appellation";
|
|
1950
|
+
title: string;
|
|
1951
|
+
} | undefined;
|
|
1870
1952
|
language?: string | string[] | undefined;
|
|
1871
|
-
title?: string | undefined;
|
|
1872
1953
|
};
|
|
1873
1954
|
renderedVia?: {
|
|
1874
1955
|
id: string;
|
|
1875
|
-
type:
|
|
1956
|
+
type: "Software";
|
|
1876
1957
|
label: string;
|
|
1958
|
+
usedSpecificObject?: string | undefined;
|
|
1877
1959
|
softwareVersion?: string | undefined;
|
|
1878
1960
|
} | undefined;
|
|
1879
1961
|
selector?: {
|
|
@@ -2072,18 +2154,21 @@ declare const WebAnnotation: z.ZodObject<{
|
|
|
2072
2154
|
}>, "atleastone">>;
|
|
2073
2155
|
generator: z.ZodObject<{
|
|
2074
2156
|
id: z.ZodString;
|
|
2075
|
-
type: z.
|
|
2157
|
+
type: z.ZodLiteral<"Software">;
|
|
2158
|
+
usedSpecificObject: z.ZodOptional<z.ZodString>;
|
|
2076
2159
|
label: z.ZodString;
|
|
2077
2160
|
softwareVersion: z.ZodOptional<z.ZodString>;
|
|
2078
2161
|
}, "strip", z.ZodTypeAny, {
|
|
2079
2162
|
id: string;
|
|
2080
|
-
type:
|
|
2163
|
+
type: "Software";
|
|
2081
2164
|
label: string;
|
|
2165
|
+
usedSpecificObject?: string | undefined;
|
|
2082
2166
|
softwareVersion?: string | undefined;
|
|
2083
2167
|
}, {
|
|
2084
2168
|
id: string;
|
|
2085
|
-
type:
|
|
2169
|
+
type: "Software";
|
|
2086
2170
|
label: string;
|
|
2171
|
+
usedSpecificObject?: string | undefined;
|
|
2087
2172
|
softwareVersion?: string | undefined;
|
|
2088
2173
|
}>;
|
|
2089
2174
|
target: z.ZodObject<{
|
|
@@ -2091,34 +2176,60 @@ declare const WebAnnotation: z.ZodObject<{
|
|
|
2091
2176
|
type: z.ZodTuple<[z.ZodLiteral<"SpecificResource">, z.ZodLiteral<"crm:E73_Information_Object">], null>;
|
|
2092
2177
|
source: z.ZodObject<{
|
|
2093
2178
|
id: z.ZodString;
|
|
2179
|
+
type: z.ZodLiteral<"crm:D1_Digital_Object">;
|
|
2094
2180
|
format: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
2181
|
+
identifiedBy: z.ZodOptional<z.ZodObject<{
|
|
2182
|
+
id: z.ZodString;
|
|
2183
|
+
type: z.ZodLiteral<"crm:E33_E41_Linguistic_Appellation">;
|
|
2184
|
+
title: z.ZodString;
|
|
2185
|
+
}, "strip", z.ZodTypeAny, {
|
|
2186
|
+
id: string;
|
|
2187
|
+
type: "crm:E33_E41_Linguistic_Appellation";
|
|
2188
|
+
title: string;
|
|
2189
|
+
}, {
|
|
2190
|
+
id: string;
|
|
2191
|
+
type: "crm:E33_E41_Linguistic_Appellation";
|
|
2192
|
+
title: string;
|
|
2193
|
+
}>>;
|
|
2095
2194
|
language: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
2096
|
-
title: z.ZodOptional<z.ZodString>;
|
|
2097
2195
|
}, "strip", z.ZodTypeAny, {
|
|
2098
2196
|
id: string;
|
|
2197
|
+
type: "crm:D1_Digital_Object";
|
|
2099
2198
|
format?: string | string[] | undefined;
|
|
2199
|
+
identifiedBy?: {
|
|
2200
|
+
id: string;
|
|
2201
|
+
type: "crm:E33_E41_Linguistic_Appellation";
|
|
2202
|
+
title: string;
|
|
2203
|
+
} | undefined;
|
|
2100
2204
|
language?: string | string[] | undefined;
|
|
2101
|
-
title?: string | undefined;
|
|
2102
2205
|
}, {
|
|
2103
2206
|
id: string;
|
|
2207
|
+
type: "crm:D1_Digital_Object";
|
|
2104
2208
|
format?: string | string[] | undefined;
|
|
2209
|
+
identifiedBy?: {
|
|
2210
|
+
id: string;
|
|
2211
|
+
type: "crm:E33_E41_Linguistic_Appellation";
|
|
2212
|
+
title: string;
|
|
2213
|
+
} | undefined;
|
|
2105
2214
|
language?: string | string[] | undefined;
|
|
2106
|
-
title?: string | undefined;
|
|
2107
2215
|
}>;
|
|
2108
2216
|
renderedVia: z.ZodOptional<z.ZodObject<{
|
|
2109
2217
|
id: z.ZodString;
|
|
2110
|
-
type: z.
|
|
2218
|
+
type: z.ZodLiteral<"Software">;
|
|
2219
|
+
usedSpecificObject: z.ZodOptional<z.ZodString>;
|
|
2111
2220
|
label: z.ZodString;
|
|
2112
2221
|
softwareVersion: z.ZodOptional<z.ZodString>;
|
|
2113
2222
|
}, "strip", z.ZodTypeAny, {
|
|
2114
2223
|
id: string;
|
|
2115
|
-
type:
|
|
2224
|
+
type: "Software";
|
|
2116
2225
|
label: string;
|
|
2226
|
+
usedSpecificObject?: string | undefined;
|
|
2117
2227
|
softwareVersion?: string | undefined;
|
|
2118
2228
|
}, {
|
|
2119
2229
|
id: string;
|
|
2120
|
-
type:
|
|
2230
|
+
type: "Software";
|
|
2121
2231
|
label: string;
|
|
2232
|
+
usedSpecificObject?: string | undefined;
|
|
2122
2233
|
softwareVersion?: string | undefined;
|
|
2123
2234
|
}>>;
|
|
2124
2235
|
selector: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
@@ -2675,14 +2786,20 @@ declare const WebAnnotation: z.ZodObject<{
|
|
|
2675
2786
|
type: ["SpecificResource", "crm:E73_Information_Object"];
|
|
2676
2787
|
source: {
|
|
2677
2788
|
id: string;
|
|
2789
|
+
type: "crm:D1_Digital_Object";
|
|
2678
2790
|
format?: string | string[] | undefined;
|
|
2791
|
+
identifiedBy?: {
|
|
2792
|
+
id: string;
|
|
2793
|
+
type: "crm:E33_E41_Linguistic_Appellation";
|
|
2794
|
+
title: string;
|
|
2795
|
+
} | undefined;
|
|
2679
2796
|
language?: string | string[] | undefined;
|
|
2680
|
-
title?: string | undefined;
|
|
2681
2797
|
};
|
|
2682
2798
|
renderedVia?: {
|
|
2683
2799
|
id: string;
|
|
2684
|
-
type:
|
|
2800
|
+
type: "Software";
|
|
2685
2801
|
label: string;
|
|
2802
|
+
usedSpecificObject?: string | undefined;
|
|
2686
2803
|
softwareVersion?: string | undefined;
|
|
2687
2804
|
} | undefined;
|
|
2688
2805
|
selector?: {
|
|
@@ -2819,14 +2936,20 @@ declare const WebAnnotation: z.ZodObject<{
|
|
|
2819
2936
|
type: ["SpecificResource", "crm:E73_Information_Object"];
|
|
2820
2937
|
source: {
|
|
2821
2938
|
id: string;
|
|
2939
|
+
type: "crm:D1_Digital_Object";
|
|
2822
2940
|
format?: string | string[] | undefined;
|
|
2941
|
+
identifiedBy?: {
|
|
2942
|
+
id: string;
|
|
2943
|
+
type: "crm:E33_E41_Linguistic_Appellation";
|
|
2944
|
+
title: string;
|
|
2945
|
+
} | undefined;
|
|
2823
2946
|
language?: string | string[] | undefined;
|
|
2824
|
-
title?: string | undefined;
|
|
2825
2947
|
};
|
|
2826
2948
|
renderedVia?: {
|
|
2827
2949
|
id: string;
|
|
2828
|
-
type:
|
|
2950
|
+
type: "Software";
|
|
2829
2951
|
label: string;
|
|
2952
|
+
usedSpecificObject?: string | undefined;
|
|
2830
2953
|
softwareVersion?: string | undefined;
|
|
2831
2954
|
} | undefined;
|
|
2832
2955
|
selector?: {
|
|
@@ -3079,14 +3202,20 @@ declare const WebAnnotation: z.ZodObject<{
|
|
|
3079
3202
|
type: ["SpecificResource", "crm:E73_Information_Object"];
|
|
3080
3203
|
source: {
|
|
3081
3204
|
id: string;
|
|
3205
|
+
type: "crm:D1_Digital_Object";
|
|
3082
3206
|
format?: string | string[] | undefined;
|
|
3207
|
+
identifiedBy?: {
|
|
3208
|
+
id: string;
|
|
3209
|
+
type: "crm:E33_E41_Linguistic_Appellation";
|
|
3210
|
+
title: string;
|
|
3211
|
+
} | undefined;
|
|
3083
3212
|
language?: string | string[] | undefined;
|
|
3084
|
-
title?: string | undefined;
|
|
3085
3213
|
};
|
|
3086
3214
|
renderedVia?: {
|
|
3087
3215
|
id: string;
|
|
3088
|
-
type:
|
|
3216
|
+
type: "Software";
|
|
3089
3217
|
label: string;
|
|
3218
|
+
usedSpecificObject?: string | undefined;
|
|
3090
3219
|
softwareVersion?: string | undefined;
|
|
3091
3220
|
} | undefined;
|
|
3092
3221
|
selector?: {
|
|
@@ -3331,8 +3460,9 @@ declare const WebAnnotation: z.ZodObject<{
|
|
|
3331
3460
|
created: string;
|
|
3332
3461
|
generator: {
|
|
3333
3462
|
id: string;
|
|
3334
|
-
type:
|
|
3463
|
+
type: "Software";
|
|
3335
3464
|
label: string;
|
|
3465
|
+
usedSpecificObject?: string | undefined;
|
|
3336
3466
|
softwareVersion?: string | undefined;
|
|
3337
3467
|
};
|
|
3338
3468
|
modified?: string | undefined;
|
|
@@ -3362,14 +3492,20 @@ declare const WebAnnotation: z.ZodObject<{
|
|
|
3362
3492
|
type: ["SpecificResource", "crm:E73_Information_Object"];
|
|
3363
3493
|
source: {
|
|
3364
3494
|
id: string;
|
|
3495
|
+
type: "crm:D1_Digital_Object";
|
|
3365
3496
|
format?: string | string[] | undefined;
|
|
3497
|
+
identifiedBy?: {
|
|
3498
|
+
id: string;
|
|
3499
|
+
type: "crm:E33_E41_Linguistic_Appellation";
|
|
3500
|
+
title: string;
|
|
3501
|
+
} | undefined;
|
|
3366
3502
|
language?: string | string[] | undefined;
|
|
3367
|
-
title?: string | undefined;
|
|
3368
3503
|
};
|
|
3369
3504
|
renderedVia?: {
|
|
3370
3505
|
id: string;
|
|
3371
|
-
type:
|
|
3506
|
+
type: "Software";
|
|
3372
3507
|
label: string;
|
|
3508
|
+
usedSpecificObject?: string | undefined;
|
|
3373
3509
|
softwareVersion?: string | undefined;
|
|
3374
3510
|
} | undefined;
|
|
3375
3511
|
selector?: {
|
|
@@ -3614,8 +3750,9 @@ declare const WebAnnotation: z.ZodObject<{
|
|
|
3614
3750
|
created: string;
|
|
3615
3751
|
generator: {
|
|
3616
3752
|
id: string;
|
|
3617
|
-
type:
|
|
3753
|
+
type: "Software";
|
|
3618
3754
|
label: string;
|
|
3755
|
+
usedSpecificObject?: string | undefined;
|
|
3619
3756
|
softwareVersion?: string | undefined;
|
|
3620
3757
|
};
|
|
3621
3758
|
modified?: string | undefined;
|
|
@@ -3728,14 +3865,20 @@ declare const validator: _ajv.ValidateFunction<Required<{
|
|
|
3728
3865
|
type: ["SpecificResource", "crm:E73_Information_Object"];
|
|
3729
3866
|
source: {
|
|
3730
3867
|
id: string;
|
|
3868
|
+
type: "crm:D1_Digital_Object";
|
|
3731
3869
|
format?: string | string[] | undefined;
|
|
3870
|
+
identifiedBy?: {
|
|
3871
|
+
id: string;
|
|
3872
|
+
type: "crm:E33_E41_Linguistic_Appellation";
|
|
3873
|
+
title: string;
|
|
3874
|
+
} | undefined;
|
|
3732
3875
|
language?: string | string[] | undefined;
|
|
3733
|
-
title?: string | undefined;
|
|
3734
3876
|
};
|
|
3735
3877
|
renderedVia?: {
|
|
3736
3878
|
id: string;
|
|
3737
|
-
type:
|
|
3879
|
+
type: "Software";
|
|
3738
3880
|
label: string;
|
|
3881
|
+
usedSpecificObject?: string | undefined;
|
|
3739
3882
|
softwareVersion?: string | undefined;
|
|
3740
3883
|
} | undefined;
|
|
3741
3884
|
selector?: {
|
|
@@ -3980,8 +4123,9 @@ declare const validator: _ajv.ValidateFunction<Required<{
|
|
|
3980
4123
|
created: string;
|
|
3981
4124
|
generator: {
|
|
3982
4125
|
id: string;
|
|
3983
|
-
type:
|
|
4126
|
+
type: "Software";
|
|
3984
4127
|
label: string;
|
|
4128
|
+
usedSpecificObject?: string | undefined;
|
|
3985
4129
|
softwareVersion?: string | undefined;
|
|
3986
4130
|
};
|
|
3987
4131
|
modified?: string | undefined;
|
|
@@ -4043,6 +4187,7 @@ type index_Definition = Definition;
|
|
|
4043
4187
|
type index_Event = Event;
|
|
4044
4188
|
type index_EventEntityType = EventEntityType;
|
|
4045
4189
|
type index_Format = Format;
|
|
4190
|
+
type index_IdentifiedBy = IdentifiedBy;
|
|
4046
4191
|
type index_Keyword = Keyword;
|
|
4047
4192
|
type index_KeywordEntityType = KeywordEntityType;
|
|
4048
4193
|
type index_KeywordFolksnomy = KeywordFolksnomy;
|
|
@@ -4103,6 +4248,7 @@ declare const index_defsId: typeof defsId;
|
|
|
4103
4248
|
declare const index_eventEntityTypeSchema: typeof eventEntityTypeSchema;
|
|
4104
4249
|
declare const index_eventSchema: typeof eventSchema;
|
|
4105
4250
|
declare const index_formatSchema: typeof formatSchema;
|
|
4251
|
+
declare const index_indentifyBySchema: typeof indentifyBySchema;
|
|
4106
4252
|
declare const index_keywordEntityTypeSchema: typeof keywordEntityTypeSchema;
|
|
4107
4253
|
declare const index_keywordFolksnomyEntityTypeSchema: typeof keywordFolksnomyEntityTypeSchema;
|
|
4108
4254
|
declare const index_keywordFolksnomySchema: typeof keywordFolksnomySchema;
|
|
@@ -4142,7 +4288,7 @@ declare const index_workSchema: typeof workSchema;
|
|
|
4142
4288
|
declare const index_xpathSelectorExtendedSchema: typeof xpathSelectorExtendedSchema;
|
|
4143
4289
|
declare const index_xpathSelectorSchema: typeof xpathSelectorSchema;
|
|
4144
4290
|
declare namespace index {
|
|
4145
|
-
export { type index_Body as Body, type index_BodyChoice as BodyChoice, type index_BodyEntityType as BodyEntityType, type index_Certainty as Certainty, type index_Citation as Citation, type index_CitationEntityType as CitationEntityType, type index_ConceptualObject as ConceptualObject, type index_ConceptualObjectEntityType as ConceptualObjectEntityType, type index_Correction as Correction, type index_CorrectionEntityType as CorrectionEntityType, index_DATE_RANGE_PATTERN as DATE_RANGE_PATTERN, type index_Date as Date, type index_DateEntityType as DateEntityType, type index_Definition as Definition, type index_Event as Event, type index_EventEntityType as EventEntityType, type index_Format as Format, type index_Keyword as Keyword, type index_KeywordEntityType as KeywordEntityType, type index_KeywordFolksnomy as KeywordFolksnomy, type index_KeywordFolksnomyEntityType as KeywordFolksnomyEntityType, type index_Language as Language, type index_Link as Link, type index_LinkEntityType as LinkEntityType, type index_Motivation as Motivation, type index_Note as Note, type index_NoteEntityType as NoteEntityType, type index_Organization as Organization, type index_OrganizationEntityType as OrganizationEntityType, type index_Person as Person, type index_PersonEntityType as PersonEntityType, type index_PhysicalThing as PhysicalThing, type index_PhysicalThingEntityType as PhysicalThingEntityType, type index_Place as Place, type index_PlaceEntityType as PlaceEntityType, type index_Precision as Precision, type index_Quality as Quality, type index_RangeSelector as RangeSelector, type index_Selector as Selector, type index_Software as Software, type index_Source as Source, type index_Status as Status, type index_Target as Target, type index_TextPositionSelector as TextPositionSelector, type index_TextPositionSelectorExtended as TextPositionSelectorExtended, type index_TextQuoteSelector as TextQuoteSelector, type index_TextQuoteSelectorExtended as TextQuoteSelectorExtended, type index_User as User, index_VERSION as VERSION, type index_ValidateResult as ValidateResult, type index_ValidationError as ValidationError, type index_WebAnnotation as WebAnnotation, type index_Work as Work, type index_WorkEntityType as WorkEntityType, type index_XpathSelector as XpathSelector, type index_XpathSelectorExtended as XpathSelectorExtended, index_ajv as ajv, index_bodyChoiceSchema as bodyChoiceSchema, index_bodyEntityTypeSchema as bodyEntityTypeSchema, index_bodyIdDescription as bodyIdDescription, index_bodySchema as bodySchema, index_certaintySchema as certaintySchema, index_citationEntityTypeSchema as citationEntityTypeSchema, index_citationSchema as citationSchema, index_conceptualObjectEntityTypeSchema as conceptualObjectEntityTypeSchema, index_conceptualObjectSchema as conceptualObjectSchema, index_contextUri as contextUri, index_correctionEntityTypeSchema as correctionEntityTypeSchema, index_correctionSchema as correctionSchema, index_creatorSchema as creatorSchema, index_dateEntityTypeSchema as dateEntityTypeSchema, index_dateSchema as dateSchema, index_definitionSchema as definitionSchema, index_defsId as defsId, index_eventEntityTypeSchema as eventEntityTypeSchema, index_eventSchema as eventSchema, index_formatSchema as formatSchema, index_keywordEntityTypeSchema as keywordEntityTypeSchema, index_keywordFolksnomyEntityTypeSchema as keywordFolksnomyEntityTypeSchema, index_keywordFolksnomySchema as keywordFolksnomySchema, index_keywordSchema as keywordSchema, index_languageSchema as languageSchema, index_linkEntityTypeSchema as linkEntityTypeSchema, index_linkSchema as linkSchema, index_noteEntityTypeSchema as noteEntityTypeSchema, index_noteSchema as noteSchema, index_organizationEntityTypeSchema as organizationEntityTypeSchema, index_organizationSchema as organizationSchema, index_personEntityTypeSchema as personEntityTypeSchema, index_personSchema as personSchema, index_physicalThingEntityTypeSchema as physicalThingEntityTypeSchema, index_physicalThingSchema as physicalThingSchema, index_placeEntityTypeSchema as placeEntityTypeSchema, index_placeSchema as placeSchema, index_precisionSchema as precisionSchema, index_rangeSelectorSchema as rangeSelectorSchema, index_schemaContext as schemaContext, index_schemaId as schemaId, index_selectorIdDescription as selectorIdDescription, index_selectorRefinedByDescription as selectorRefinedByDescription, index_selectorSchema as selectorSchema, index_softwareSchema as softwareSchema, index_sourceSchema as sourceSchema, index_targetSchema as targetSchema, index_textPositionSelectorExtendedSchema as textPositionSelectorExtendedSchema, index_textPositionSelectorSchema as textPositionSelectorSchema, index_textQuoteSelectorExtendedSchema as textQuoteSelectorExtendedSchema, index_textQuoteSelectorSchema as textQuoteSelectorSchema, index_validate as validate, index_validator as validator, index_webAnnotationSchema as webAnnotationSchema, index_workEntityTypeSchema as workEntityTypeSchema, index_workSchema as workSchema, index_xpathSelectorExtendedSchema as xpathSelectorExtendedSchema, index_xpathSelectorSchema as xpathSelectorSchema };
|
|
4291
|
+
export { type index_Body as Body, type index_BodyChoice as BodyChoice, type index_BodyEntityType as BodyEntityType, type index_Certainty as Certainty, type index_Citation as Citation, type index_CitationEntityType as CitationEntityType, type index_ConceptualObject as ConceptualObject, type index_ConceptualObjectEntityType as ConceptualObjectEntityType, type index_Correction as Correction, type index_CorrectionEntityType as CorrectionEntityType, index_DATE_RANGE_PATTERN as DATE_RANGE_PATTERN, type index_Date as Date, type index_DateEntityType as DateEntityType, type index_Definition as Definition, type index_Event as Event, type index_EventEntityType as EventEntityType, type index_Format as Format, type index_IdentifiedBy as IdentifiedBy, type index_Keyword as Keyword, type index_KeywordEntityType as KeywordEntityType, type index_KeywordFolksnomy as KeywordFolksnomy, type index_KeywordFolksnomyEntityType as KeywordFolksnomyEntityType, type index_Language as Language, type index_Link as Link, type index_LinkEntityType as LinkEntityType, type index_Motivation as Motivation, type index_Note as Note, type index_NoteEntityType as NoteEntityType, type index_Organization as Organization, type index_OrganizationEntityType as OrganizationEntityType, type index_Person as Person, type index_PersonEntityType as PersonEntityType, type index_PhysicalThing as PhysicalThing, type index_PhysicalThingEntityType as PhysicalThingEntityType, type index_Place as Place, type index_PlaceEntityType as PlaceEntityType, type index_Precision as Precision, type index_Quality as Quality, type index_RangeSelector as RangeSelector, type index_Selector as Selector, type index_Software as Software, type index_Source as Source, type index_Status as Status, type index_Target as Target, type index_TextPositionSelector as TextPositionSelector, type index_TextPositionSelectorExtended as TextPositionSelectorExtended, type index_TextQuoteSelector as TextQuoteSelector, type index_TextQuoteSelectorExtended as TextQuoteSelectorExtended, type index_User as User, index_VERSION as VERSION, type index_ValidateResult as ValidateResult, type index_ValidationError as ValidationError, type index_WebAnnotation as WebAnnotation, type index_Work as Work, type index_WorkEntityType as WorkEntityType, type index_XpathSelector as XpathSelector, type index_XpathSelectorExtended as XpathSelectorExtended, index_ajv as ajv, index_bodyChoiceSchema as bodyChoiceSchema, index_bodyEntityTypeSchema as bodyEntityTypeSchema, index_bodyIdDescription as bodyIdDescription, index_bodySchema as bodySchema, index_certaintySchema as certaintySchema, index_citationEntityTypeSchema as citationEntityTypeSchema, index_citationSchema as citationSchema, index_conceptualObjectEntityTypeSchema as conceptualObjectEntityTypeSchema, index_conceptualObjectSchema as conceptualObjectSchema, index_contextUri as contextUri, index_correctionEntityTypeSchema as correctionEntityTypeSchema, index_correctionSchema as correctionSchema, index_creatorSchema as creatorSchema, index_dateEntityTypeSchema as dateEntityTypeSchema, index_dateSchema as dateSchema, index_definitionSchema as definitionSchema, index_defsId as defsId, index_eventEntityTypeSchema as eventEntityTypeSchema, index_eventSchema as eventSchema, index_formatSchema as formatSchema, index_indentifyBySchema as indentifyBySchema, index_keywordEntityTypeSchema as keywordEntityTypeSchema, index_keywordFolksnomyEntityTypeSchema as keywordFolksnomyEntityTypeSchema, index_keywordFolksnomySchema as keywordFolksnomySchema, index_keywordSchema as keywordSchema, index_languageSchema as languageSchema, index_linkEntityTypeSchema as linkEntityTypeSchema, index_linkSchema as linkSchema, index_noteEntityTypeSchema as noteEntityTypeSchema, index_noteSchema as noteSchema, index_organizationEntityTypeSchema as organizationEntityTypeSchema, index_organizationSchema as organizationSchema, index_personEntityTypeSchema as personEntityTypeSchema, index_personSchema as personSchema, index_physicalThingEntityTypeSchema as physicalThingEntityTypeSchema, index_physicalThingSchema as physicalThingSchema, index_placeEntityTypeSchema as placeEntityTypeSchema, index_placeSchema as placeSchema, index_precisionSchema as precisionSchema, index_rangeSelectorSchema as rangeSelectorSchema, index_schemaContext as schemaContext, index_schemaId as schemaId, index_selectorIdDescription as selectorIdDescription, index_selectorRefinedByDescription as selectorRefinedByDescription, index_selectorSchema as selectorSchema, index_softwareSchema as softwareSchema, index_sourceSchema as sourceSchema, index_targetSchema as targetSchema, index_textPositionSelectorExtendedSchema as textPositionSelectorExtendedSchema, index_textPositionSelectorSchema as textPositionSelectorSchema, index_textQuoteSelectorExtendedSchema as textQuoteSelectorExtendedSchema, index_textQuoteSelectorSchema as textQuoteSelectorSchema, index_validate as validate, index_validator as validator, index_webAnnotationSchema as webAnnotationSchema, index_workEntityTypeSchema as workEntityTypeSchema, index_workSchema as workSchema, index_xpathSelectorExtendedSchema as xpathSelectorExtendedSchema, index_xpathSelectorSchema as xpathSelectorSchema };
|
|
4146
4292
|
}
|
|
4147
4293
|
|
|
4148
|
-
export { Body, BodyChoice, BodyEntityType, Certainty, Citation, CitationEntityType, ConceptualObject, ConceptualObjectEntityType, Correction, CorrectionEntityType, DATE_RANGE_PATTERN, Date, DateEntityType, type Definition, Event, EventEntityType, Format, Keyword, KeywordEntityType, KeywordFolksnomy, KeywordFolksnomyEntityType, Language, Link, LinkEntityType, Motivation, Note, NoteEntityType, Organization, OrganizationEntityType, Person, PersonEntityType, PhysicalThing, PhysicalThingEntityType, Place, PlaceEntityType, Precision, Quality, RangeSelector, Selector, Software, Source, Status, Target, TextPositionSelector, TextPositionSelectorExtended, TextQuoteSelector, TextQuoteSelectorExtended, User, VERSION, ValidateResult, ValidationError, WebAnnotation, Work, WorkEntityType, XpathSelector, XpathSelectorExtended, ajv, bodyChoiceSchema, bodyEntityTypeSchema, bodyIdDescription, bodySchema, certaintySchema, citationEntityTypeSchema, citationSchema, conceptualObjectEntityTypeSchema, conceptualObjectSchema, contextUri, correctionEntityTypeSchema, correctionSchema, creatorSchema, dateEntityTypeSchema, dateSchema, definitionSchema, defsId, eventEntityTypeSchema, eventSchema, formatSchema, keywordEntityTypeSchema, keywordFolksnomyEntityTypeSchema, keywordFolksnomySchema, keywordSchema, languageSchema, linkEntityTypeSchema, linkSchema, noteEntityTypeSchema, noteSchema, organizationEntityTypeSchema, organizationSchema, personEntityTypeSchema, personSchema, physicalThingEntityTypeSchema, physicalThingSchema, placeEntityTypeSchema, placeSchema, precisionSchema, rangeSelectorSchema, schemaContext, schemaId, selectorIdDescription, selectorRefinedByDescription, selectorSchema, softwareSchema, sourceSchema, targetSchema, textPositionSelectorExtendedSchema, textPositionSelectorSchema, textQuoteSelectorExtendedSchema, textQuoteSelectorSchema, index as v1, validate, validator, webAnnotationSchema, workEntityTypeSchema, workSchema, xpathSelectorExtendedSchema, xpathSelectorSchema };
|
|
4294
|
+
export { Body, BodyChoice, BodyEntityType, Certainty, Citation, CitationEntityType, ConceptualObject, ConceptualObjectEntityType, Correction, CorrectionEntityType, DATE_RANGE_PATTERN, Date, DateEntityType, type Definition, Event, EventEntityType, Format, IdentifiedBy, Keyword, KeywordEntityType, KeywordFolksnomy, KeywordFolksnomyEntityType, Language, Link, LinkEntityType, Motivation, Note, NoteEntityType, Organization, OrganizationEntityType, Person, PersonEntityType, PhysicalThing, PhysicalThingEntityType, Place, PlaceEntityType, Precision, Quality, RangeSelector, Selector, Software, Source, Status, Target, TextPositionSelector, TextPositionSelectorExtended, TextQuoteSelector, TextQuoteSelectorExtended, User, VERSION, ValidateResult, ValidationError, WebAnnotation, Work, WorkEntityType, XpathSelector, XpathSelectorExtended, ajv, bodyChoiceSchema, bodyEntityTypeSchema, bodyIdDescription, bodySchema, certaintySchema, citationEntityTypeSchema, citationSchema, conceptualObjectEntityTypeSchema, conceptualObjectSchema, contextUri, correctionEntityTypeSchema, correctionSchema, creatorSchema, dateEntityTypeSchema, dateSchema, definitionSchema, defsId, eventEntityTypeSchema, eventSchema, formatSchema, indentifyBySchema, keywordEntityTypeSchema, keywordFolksnomyEntityTypeSchema, keywordFolksnomySchema, keywordSchema, languageSchema, linkEntityTypeSchema, linkSchema, noteEntityTypeSchema, noteSchema, organizationEntityTypeSchema, organizationSchema, personEntityTypeSchema, personSchema, physicalThingEntityTypeSchema, physicalThingSchema, placeEntityTypeSchema, placeSchema, precisionSchema, rangeSelectorSchema, schemaContext, schemaId, selectorIdDescription, selectorRefinedByDescription, selectorSchema, softwareSchema, sourceSchema, targetSchema, textPositionSelectorExtendedSchema, textPositionSelectorSchema, textQuoteSelectorExtendedSchema, textQuoteSelectorSchema, index as v1, validate, validator, webAnnotationSchema, workEntityTypeSchema, workSchema, xpathSelectorExtendedSchema, xpathSelectorSchema };
|