@lincs.project/webannotation-schema 1.5.0 → 1.7.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 +63 -31
- package/dist/index.d.ts +63 -31
- package/dist/index.js +133 -108
- package/dist/index.mjs +133 -107
- package/dist/v1/jsonld/context.jsonld +1 -0
- package/dist/v1/jsonld/defs.jsonld +6 -14
- package/dist/v1/jsonld/schema.jsonld +172 -106
- package/dist/v1/standalone/linc-wa-validator.js +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -44,6 +44,7 @@ declare const schemaContext: {
|
|
|
44
44
|
'@id': string;
|
|
45
45
|
};
|
|
46
46
|
title: string;
|
|
47
|
+
usedSpecificObject: string;
|
|
47
48
|
approved: string;
|
|
48
49
|
citing: string;
|
|
49
50
|
correcting: string;
|
|
@@ -69,18 +70,21 @@ type User = z.infer<typeof User>;
|
|
|
69
70
|
declare const creatorSchema: JSONSchemaType<User>;
|
|
70
71
|
declare const Software: z.ZodObject<{
|
|
71
72
|
id: z.ZodString;
|
|
72
|
-
type: z.
|
|
73
|
+
type: z.ZodLiteral<"Software">;
|
|
74
|
+
usedSpecificObject: z.ZodOptional<z.ZodString>;
|
|
73
75
|
label: z.ZodString;
|
|
74
76
|
softwareVersion: z.ZodOptional<z.ZodString>;
|
|
75
77
|
}, "strip", z.ZodTypeAny, {
|
|
76
78
|
id: string;
|
|
77
|
-
type:
|
|
79
|
+
type: "Software";
|
|
78
80
|
label: string;
|
|
81
|
+
usedSpecificObject?: string | undefined;
|
|
79
82
|
softwareVersion?: string | undefined;
|
|
80
83
|
}, {
|
|
81
84
|
id: string;
|
|
82
|
-
type:
|
|
85
|
+
type: "Software";
|
|
83
86
|
label: string;
|
|
87
|
+
usedSpecificObject?: string | undefined;
|
|
84
88
|
softwareVersion?: string | undefined;
|
|
85
89
|
}>;
|
|
86
90
|
type Software = z.infer<typeof Software>;
|
|
@@ -1217,18 +1221,21 @@ declare const Target: z.ZodObject<{
|
|
|
1217
1221
|
}>;
|
|
1218
1222
|
renderedVia: z.ZodOptional<z.ZodObject<{
|
|
1219
1223
|
id: z.ZodString;
|
|
1220
|
-
type: z.
|
|
1224
|
+
type: z.ZodLiteral<"Software">;
|
|
1225
|
+
usedSpecificObject: z.ZodOptional<z.ZodString>;
|
|
1221
1226
|
label: z.ZodString;
|
|
1222
1227
|
softwareVersion: z.ZodOptional<z.ZodString>;
|
|
1223
1228
|
}, "strip", z.ZodTypeAny, {
|
|
1224
1229
|
id: string;
|
|
1225
|
-
type:
|
|
1230
|
+
type: "Software";
|
|
1226
1231
|
label: string;
|
|
1232
|
+
usedSpecificObject?: string | undefined;
|
|
1227
1233
|
softwareVersion?: string | undefined;
|
|
1228
1234
|
}, {
|
|
1229
1235
|
id: string;
|
|
1230
|
-
type:
|
|
1236
|
+
type: "Software";
|
|
1231
1237
|
label: string;
|
|
1238
|
+
usedSpecificObject?: string | undefined;
|
|
1232
1239
|
softwareVersion?: string | undefined;
|
|
1233
1240
|
}>>;
|
|
1234
1241
|
selector: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
@@ -1796,8 +1803,9 @@ declare const Target: z.ZodObject<{
|
|
|
1796
1803
|
};
|
|
1797
1804
|
renderedVia?: {
|
|
1798
1805
|
id: string;
|
|
1799
|
-
type:
|
|
1806
|
+
type: "Software";
|
|
1800
1807
|
label: string;
|
|
1808
|
+
usedSpecificObject?: string | undefined;
|
|
1801
1809
|
softwareVersion?: string | undefined;
|
|
1802
1810
|
} | undefined;
|
|
1803
1811
|
selector?: {
|
|
@@ -1945,8 +1953,9 @@ declare const Target: z.ZodObject<{
|
|
|
1945
1953
|
};
|
|
1946
1954
|
renderedVia?: {
|
|
1947
1955
|
id: string;
|
|
1948
|
-
type:
|
|
1956
|
+
type: "Software";
|
|
1949
1957
|
label: string;
|
|
1958
|
+
usedSpecificObject?: string | undefined;
|
|
1950
1959
|
softwareVersion?: string | undefined;
|
|
1951
1960
|
} | undefined;
|
|
1952
1961
|
selector?: {
|
|
@@ -2108,13 +2117,17 @@ declare const definitionSchema: JSONSchemaType<Definition>;
|
|
|
2108
2117
|
|
|
2109
2118
|
declare const Status: readonly ["edit:statusDraft", "edit:statusApproved", "edit:statusPublished"];
|
|
2110
2119
|
type Status = (typeof Status)[number];
|
|
2111
|
-
declare const Motivation: readonly ["identifying", "describing", "correcting", "tagging", "classifying", "linking", "citing"];
|
|
2112
|
-
type Motivation = (typeof Motivation)[number];
|
|
2113
2120
|
declare const WebAnnotation: z.ZodObject<{
|
|
2114
2121
|
'@context': z.ZodTuple<[z.ZodLiteral<"http://www.w3.org/ns/anno.jsonld">, z.ZodLiteral<"https://wa.lincsproject.ca/v1/ns/anno.jsonld">], null>;
|
|
2115
2122
|
id: z.ZodString;
|
|
2116
2123
|
type: z.ZodTuple<[z.ZodLiteral<"Annotation">, z.ZodLiteral<"crm:E33_Linguistic_Object">], null>;
|
|
2117
|
-
motivation: z.
|
|
2124
|
+
motivation: z.ZodRecord<z.ZodUnion<[z.ZodLiteral<"identifying">, z.ZodLiteral<"describing">, z.ZodLiteral<"correcting">, z.ZodLiteral<"tagging">, z.ZodLiteral<"classifying">, z.ZodLiteral<"linking">, z.ZodLiteral<"citing">]>, z.ZodObject<{
|
|
2125
|
+
type: z.ZodLiteral<"crm:E55_Type">;
|
|
2126
|
+
}, "strip", z.ZodTypeAny, {
|
|
2127
|
+
type: "crm:E55_Type";
|
|
2128
|
+
}, {
|
|
2129
|
+
type: "crm:E55_Type";
|
|
2130
|
+
}>>;
|
|
2118
2131
|
created: z.ZodString;
|
|
2119
2132
|
modified: z.ZodOptional<z.ZodString>;
|
|
2120
2133
|
creator: z.ZodOptional<z.ZodObject<{
|
|
@@ -2145,18 +2158,21 @@ declare const WebAnnotation: z.ZodObject<{
|
|
|
2145
2158
|
}>, "atleastone">>;
|
|
2146
2159
|
generator: z.ZodObject<{
|
|
2147
2160
|
id: z.ZodString;
|
|
2148
|
-
type: z.
|
|
2161
|
+
type: z.ZodLiteral<"Software">;
|
|
2162
|
+
usedSpecificObject: z.ZodOptional<z.ZodString>;
|
|
2149
2163
|
label: z.ZodString;
|
|
2150
2164
|
softwareVersion: z.ZodOptional<z.ZodString>;
|
|
2151
2165
|
}, "strip", z.ZodTypeAny, {
|
|
2152
2166
|
id: string;
|
|
2153
|
-
type:
|
|
2167
|
+
type: "Software";
|
|
2154
2168
|
label: string;
|
|
2169
|
+
usedSpecificObject?: string | undefined;
|
|
2155
2170
|
softwareVersion?: string | undefined;
|
|
2156
2171
|
}, {
|
|
2157
2172
|
id: string;
|
|
2158
|
-
type:
|
|
2173
|
+
type: "Software";
|
|
2159
2174
|
label: string;
|
|
2175
|
+
usedSpecificObject?: string | undefined;
|
|
2160
2176
|
softwareVersion?: string | undefined;
|
|
2161
2177
|
}>;
|
|
2162
2178
|
target: z.ZodObject<{
|
|
@@ -2203,18 +2219,21 @@ declare const WebAnnotation: z.ZodObject<{
|
|
|
2203
2219
|
}>;
|
|
2204
2220
|
renderedVia: z.ZodOptional<z.ZodObject<{
|
|
2205
2221
|
id: z.ZodString;
|
|
2206
|
-
type: z.
|
|
2222
|
+
type: z.ZodLiteral<"Software">;
|
|
2223
|
+
usedSpecificObject: z.ZodOptional<z.ZodString>;
|
|
2207
2224
|
label: z.ZodString;
|
|
2208
2225
|
softwareVersion: z.ZodOptional<z.ZodString>;
|
|
2209
2226
|
}, "strip", z.ZodTypeAny, {
|
|
2210
2227
|
id: string;
|
|
2211
|
-
type:
|
|
2228
|
+
type: "Software";
|
|
2212
2229
|
label: string;
|
|
2230
|
+
usedSpecificObject?: string | undefined;
|
|
2213
2231
|
softwareVersion?: string | undefined;
|
|
2214
2232
|
}, {
|
|
2215
2233
|
id: string;
|
|
2216
|
-
type:
|
|
2234
|
+
type: "Software";
|
|
2217
2235
|
label: string;
|
|
2236
|
+
usedSpecificObject?: string | undefined;
|
|
2218
2237
|
softwareVersion?: string | undefined;
|
|
2219
2238
|
}>>;
|
|
2220
2239
|
selector: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
@@ -2782,8 +2801,9 @@ declare const WebAnnotation: z.ZodObject<{
|
|
|
2782
2801
|
};
|
|
2783
2802
|
renderedVia?: {
|
|
2784
2803
|
id: string;
|
|
2785
|
-
type:
|
|
2804
|
+
type: "Software";
|
|
2786
2805
|
label: string;
|
|
2806
|
+
usedSpecificObject?: string | undefined;
|
|
2787
2807
|
softwareVersion?: string | undefined;
|
|
2788
2808
|
} | undefined;
|
|
2789
2809
|
selector?: {
|
|
@@ -2931,8 +2951,9 @@ declare const WebAnnotation: z.ZodObject<{
|
|
|
2931
2951
|
};
|
|
2932
2952
|
renderedVia?: {
|
|
2933
2953
|
id: string;
|
|
2934
|
-
type:
|
|
2954
|
+
type: "Software";
|
|
2935
2955
|
label: string;
|
|
2956
|
+
usedSpecificObject?: string | undefined;
|
|
2936
2957
|
softwareVersion?: string | undefined;
|
|
2937
2958
|
} | undefined;
|
|
2938
2959
|
selector?: {
|
|
@@ -3196,8 +3217,9 @@ declare const WebAnnotation: z.ZodObject<{
|
|
|
3196
3217
|
};
|
|
3197
3218
|
renderedVia?: {
|
|
3198
3219
|
id: string;
|
|
3199
|
-
type:
|
|
3220
|
+
type: "Software";
|
|
3200
3221
|
label: string;
|
|
3222
|
+
usedSpecificObject?: string | undefined;
|
|
3201
3223
|
softwareVersion?: string | undefined;
|
|
3202
3224
|
} | undefined;
|
|
3203
3225
|
selector?: {
|
|
@@ -3438,12 +3460,15 @@ declare const WebAnnotation: z.ZodObject<{
|
|
|
3438
3460
|
description?: string | undefined;
|
|
3439
3461
|
}[]);
|
|
3440
3462
|
'@context': ["http://www.w3.org/ns/anno.jsonld", "https://wa.lincsproject.ca/v1/ns/anno.jsonld"];
|
|
3441
|
-
motivation:
|
|
3463
|
+
motivation: Partial<Record<"identifying" | "describing" | "correcting" | "tagging" | "classifying" | "linking" | "citing", {
|
|
3464
|
+
type: "crm:E55_Type";
|
|
3465
|
+
}>>;
|
|
3442
3466
|
created: string;
|
|
3443
3467
|
generator: {
|
|
3444
3468
|
id: string;
|
|
3445
|
-
type:
|
|
3469
|
+
type: "Software";
|
|
3446
3470
|
label: string;
|
|
3471
|
+
usedSpecificObject?: string | undefined;
|
|
3447
3472
|
softwareVersion?: string | undefined;
|
|
3448
3473
|
};
|
|
3449
3474
|
modified?: string | undefined;
|
|
@@ -3484,8 +3509,9 @@ declare const WebAnnotation: z.ZodObject<{
|
|
|
3484
3509
|
};
|
|
3485
3510
|
renderedVia?: {
|
|
3486
3511
|
id: string;
|
|
3487
|
-
type:
|
|
3512
|
+
type: "Software";
|
|
3488
3513
|
label: string;
|
|
3514
|
+
usedSpecificObject?: string | undefined;
|
|
3489
3515
|
softwareVersion?: string | undefined;
|
|
3490
3516
|
} | undefined;
|
|
3491
3517
|
selector?: {
|
|
@@ -3726,12 +3752,15 @@ declare const WebAnnotation: z.ZodObject<{
|
|
|
3726
3752
|
description?: string | undefined;
|
|
3727
3753
|
}[]);
|
|
3728
3754
|
'@context': ["http://www.w3.org/ns/anno.jsonld", "https://wa.lincsproject.ca/v1/ns/anno.jsonld"];
|
|
3729
|
-
motivation:
|
|
3755
|
+
motivation: Partial<Record<"identifying" | "describing" | "correcting" | "tagging" | "classifying" | "linking" | "citing", {
|
|
3756
|
+
type: "crm:E55_Type";
|
|
3757
|
+
}>>;
|
|
3730
3758
|
created: string;
|
|
3731
3759
|
generator: {
|
|
3732
3760
|
id: string;
|
|
3733
|
-
type:
|
|
3761
|
+
type: "Software";
|
|
3734
3762
|
label: string;
|
|
3763
|
+
usedSpecificObject?: string | undefined;
|
|
3735
3764
|
softwareVersion?: string | undefined;
|
|
3736
3765
|
};
|
|
3737
3766
|
modified?: string | undefined;
|
|
@@ -3855,8 +3884,9 @@ declare const validator: _ajv.ValidateFunction<Required<{
|
|
|
3855
3884
|
};
|
|
3856
3885
|
renderedVia?: {
|
|
3857
3886
|
id: string;
|
|
3858
|
-
type:
|
|
3887
|
+
type: "Software";
|
|
3859
3888
|
label: string;
|
|
3889
|
+
usedSpecificObject?: string | undefined;
|
|
3860
3890
|
softwareVersion?: string | undefined;
|
|
3861
3891
|
} | undefined;
|
|
3862
3892
|
selector?: {
|
|
@@ -4097,12 +4127,15 @@ declare const validator: _ajv.ValidateFunction<Required<{
|
|
|
4097
4127
|
description?: string | undefined;
|
|
4098
4128
|
}[]);
|
|
4099
4129
|
'@context': ["http://www.w3.org/ns/anno.jsonld", "https://wa.lincsproject.ca/v1/ns/anno.jsonld"];
|
|
4100
|
-
motivation:
|
|
4130
|
+
motivation: Partial<Record<"identifying" | "describing" | "correcting" | "tagging" | "classifying" | "linking" | "citing", {
|
|
4131
|
+
type: "crm:E55_Type";
|
|
4132
|
+
}>>;
|
|
4101
4133
|
created: string;
|
|
4102
4134
|
generator: {
|
|
4103
4135
|
id: string;
|
|
4104
|
-
type:
|
|
4136
|
+
type: "Software";
|
|
4105
4137
|
label: string;
|
|
4138
|
+
usedSpecificObject?: string | undefined;
|
|
4106
4139
|
softwareVersion?: string | undefined;
|
|
4107
4140
|
};
|
|
4108
4141
|
modified?: string | undefined;
|
|
@@ -4172,7 +4205,6 @@ type index_KeywordFolksnomyEntityType = KeywordFolksnomyEntityType;
|
|
|
4172
4205
|
type index_Language = Language;
|
|
4173
4206
|
type index_Link = Link;
|
|
4174
4207
|
type index_LinkEntityType = LinkEntityType;
|
|
4175
|
-
type index_Motivation = Motivation;
|
|
4176
4208
|
type index_Note = Note;
|
|
4177
4209
|
type index_NoteEntityType = NoteEntityType;
|
|
4178
4210
|
type index_Organization = Organization;
|
|
@@ -4265,7 +4297,7 @@ declare const index_workSchema: typeof workSchema;
|
|
|
4265
4297
|
declare const index_xpathSelectorExtendedSchema: typeof xpathSelectorExtendedSchema;
|
|
4266
4298
|
declare const index_xpathSelectorSchema: typeof xpathSelectorSchema;
|
|
4267
4299
|
declare namespace index {
|
|
4268
|
-
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
|
|
4300
|
+
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_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 };
|
|
4269
4301
|
}
|
|
4270
4302
|
|
|
4271
|
-
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,
|
|
4303
|
+
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, 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 };
|
package/dist/index.d.ts
CHANGED
|
@@ -44,6 +44,7 @@ declare const schemaContext: {
|
|
|
44
44
|
'@id': string;
|
|
45
45
|
};
|
|
46
46
|
title: string;
|
|
47
|
+
usedSpecificObject: string;
|
|
47
48
|
approved: string;
|
|
48
49
|
citing: string;
|
|
49
50
|
correcting: string;
|
|
@@ -69,18 +70,21 @@ type User = z.infer<typeof User>;
|
|
|
69
70
|
declare const creatorSchema: JSONSchemaType<User>;
|
|
70
71
|
declare const Software: z.ZodObject<{
|
|
71
72
|
id: z.ZodString;
|
|
72
|
-
type: z.
|
|
73
|
+
type: z.ZodLiteral<"Software">;
|
|
74
|
+
usedSpecificObject: z.ZodOptional<z.ZodString>;
|
|
73
75
|
label: z.ZodString;
|
|
74
76
|
softwareVersion: z.ZodOptional<z.ZodString>;
|
|
75
77
|
}, "strip", z.ZodTypeAny, {
|
|
76
78
|
id: string;
|
|
77
|
-
type:
|
|
79
|
+
type: "Software";
|
|
78
80
|
label: string;
|
|
81
|
+
usedSpecificObject?: string | undefined;
|
|
79
82
|
softwareVersion?: string | undefined;
|
|
80
83
|
}, {
|
|
81
84
|
id: string;
|
|
82
|
-
type:
|
|
85
|
+
type: "Software";
|
|
83
86
|
label: string;
|
|
87
|
+
usedSpecificObject?: string | undefined;
|
|
84
88
|
softwareVersion?: string | undefined;
|
|
85
89
|
}>;
|
|
86
90
|
type Software = z.infer<typeof Software>;
|
|
@@ -1217,18 +1221,21 @@ declare const Target: z.ZodObject<{
|
|
|
1217
1221
|
}>;
|
|
1218
1222
|
renderedVia: z.ZodOptional<z.ZodObject<{
|
|
1219
1223
|
id: z.ZodString;
|
|
1220
|
-
type: z.
|
|
1224
|
+
type: z.ZodLiteral<"Software">;
|
|
1225
|
+
usedSpecificObject: z.ZodOptional<z.ZodString>;
|
|
1221
1226
|
label: z.ZodString;
|
|
1222
1227
|
softwareVersion: z.ZodOptional<z.ZodString>;
|
|
1223
1228
|
}, "strip", z.ZodTypeAny, {
|
|
1224
1229
|
id: string;
|
|
1225
|
-
type:
|
|
1230
|
+
type: "Software";
|
|
1226
1231
|
label: string;
|
|
1232
|
+
usedSpecificObject?: string | undefined;
|
|
1227
1233
|
softwareVersion?: string | undefined;
|
|
1228
1234
|
}, {
|
|
1229
1235
|
id: string;
|
|
1230
|
-
type:
|
|
1236
|
+
type: "Software";
|
|
1231
1237
|
label: string;
|
|
1238
|
+
usedSpecificObject?: string | undefined;
|
|
1232
1239
|
softwareVersion?: string | undefined;
|
|
1233
1240
|
}>>;
|
|
1234
1241
|
selector: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
@@ -1796,8 +1803,9 @@ declare const Target: z.ZodObject<{
|
|
|
1796
1803
|
};
|
|
1797
1804
|
renderedVia?: {
|
|
1798
1805
|
id: string;
|
|
1799
|
-
type:
|
|
1806
|
+
type: "Software";
|
|
1800
1807
|
label: string;
|
|
1808
|
+
usedSpecificObject?: string | undefined;
|
|
1801
1809
|
softwareVersion?: string | undefined;
|
|
1802
1810
|
} | undefined;
|
|
1803
1811
|
selector?: {
|
|
@@ -1945,8 +1953,9 @@ declare const Target: z.ZodObject<{
|
|
|
1945
1953
|
};
|
|
1946
1954
|
renderedVia?: {
|
|
1947
1955
|
id: string;
|
|
1948
|
-
type:
|
|
1956
|
+
type: "Software";
|
|
1949
1957
|
label: string;
|
|
1958
|
+
usedSpecificObject?: string | undefined;
|
|
1950
1959
|
softwareVersion?: string | undefined;
|
|
1951
1960
|
} | undefined;
|
|
1952
1961
|
selector?: {
|
|
@@ -2108,13 +2117,17 @@ declare const definitionSchema: JSONSchemaType<Definition>;
|
|
|
2108
2117
|
|
|
2109
2118
|
declare const Status: readonly ["edit:statusDraft", "edit:statusApproved", "edit:statusPublished"];
|
|
2110
2119
|
type Status = (typeof Status)[number];
|
|
2111
|
-
declare const Motivation: readonly ["identifying", "describing", "correcting", "tagging", "classifying", "linking", "citing"];
|
|
2112
|
-
type Motivation = (typeof Motivation)[number];
|
|
2113
2120
|
declare const WebAnnotation: z.ZodObject<{
|
|
2114
2121
|
'@context': z.ZodTuple<[z.ZodLiteral<"http://www.w3.org/ns/anno.jsonld">, z.ZodLiteral<"https://wa.lincsproject.ca/v1/ns/anno.jsonld">], null>;
|
|
2115
2122
|
id: z.ZodString;
|
|
2116
2123
|
type: z.ZodTuple<[z.ZodLiteral<"Annotation">, z.ZodLiteral<"crm:E33_Linguistic_Object">], null>;
|
|
2117
|
-
motivation: z.
|
|
2124
|
+
motivation: z.ZodRecord<z.ZodUnion<[z.ZodLiteral<"identifying">, z.ZodLiteral<"describing">, z.ZodLiteral<"correcting">, z.ZodLiteral<"tagging">, z.ZodLiteral<"classifying">, z.ZodLiteral<"linking">, z.ZodLiteral<"citing">]>, z.ZodObject<{
|
|
2125
|
+
type: z.ZodLiteral<"crm:E55_Type">;
|
|
2126
|
+
}, "strip", z.ZodTypeAny, {
|
|
2127
|
+
type: "crm:E55_Type";
|
|
2128
|
+
}, {
|
|
2129
|
+
type: "crm:E55_Type";
|
|
2130
|
+
}>>;
|
|
2118
2131
|
created: z.ZodString;
|
|
2119
2132
|
modified: z.ZodOptional<z.ZodString>;
|
|
2120
2133
|
creator: z.ZodOptional<z.ZodObject<{
|
|
@@ -2145,18 +2158,21 @@ declare const WebAnnotation: z.ZodObject<{
|
|
|
2145
2158
|
}>, "atleastone">>;
|
|
2146
2159
|
generator: z.ZodObject<{
|
|
2147
2160
|
id: z.ZodString;
|
|
2148
|
-
type: z.
|
|
2161
|
+
type: z.ZodLiteral<"Software">;
|
|
2162
|
+
usedSpecificObject: z.ZodOptional<z.ZodString>;
|
|
2149
2163
|
label: z.ZodString;
|
|
2150
2164
|
softwareVersion: z.ZodOptional<z.ZodString>;
|
|
2151
2165
|
}, "strip", z.ZodTypeAny, {
|
|
2152
2166
|
id: string;
|
|
2153
|
-
type:
|
|
2167
|
+
type: "Software";
|
|
2154
2168
|
label: string;
|
|
2169
|
+
usedSpecificObject?: string | undefined;
|
|
2155
2170
|
softwareVersion?: string | undefined;
|
|
2156
2171
|
}, {
|
|
2157
2172
|
id: string;
|
|
2158
|
-
type:
|
|
2173
|
+
type: "Software";
|
|
2159
2174
|
label: string;
|
|
2175
|
+
usedSpecificObject?: string | undefined;
|
|
2160
2176
|
softwareVersion?: string | undefined;
|
|
2161
2177
|
}>;
|
|
2162
2178
|
target: z.ZodObject<{
|
|
@@ -2203,18 +2219,21 @@ declare const WebAnnotation: z.ZodObject<{
|
|
|
2203
2219
|
}>;
|
|
2204
2220
|
renderedVia: z.ZodOptional<z.ZodObject<{
|
|
2205
2221
|
id: z.ZodString;
|
|
2206
|
-
type: z.
|
|
2222
|
+
type: z.ZodLiteral<"Software">;
|
|
2223
|
+
usedSpecificObject: z.ZodOptional<z.ZodString>;
|
|
2207
2224
|
label: z.ZodString;
|
|
2208
2225
|
softwareVersion: z.ZodOptional<z.ZodString>;
|
|
2209
2226
|
}, "strip", z.ZodTypeAny, {
|
|
2210
2227
|
id: string;
|
|
2211
|
-
type:
|
|
2228
|
+
type: "Software";
|
|
2212
2229
|
label: string;
|
|
2230
|
+
usedSpecificObject?: string | undefined;
|
|
2213
2231
|
softwareVersion?: string | undefined;
|
|
2214
2232
|
}, {
|
|
2215
2233
|
id: string;
|
|
2216
|
-
type:
|
|
2234
|
+
type: "Software";
|
|
2217
2235
|
label: string;
|
|
2236
|
+
usedSpecificObject?: string | undefined;
|
|
2218
2237
|
softwareVersion?: string | undefined;
|
|
2219
2238
|
}>>;
|
|
2220
2239
|
selector: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
@@ -2782,8 +2801,9 @@ declare const WebAnnotation: z.ZodObject<{
|
|
|
2782
2801
|
};
|
|
2783
2802
|
renderedVia?: {
|
|
2784
2803
|
id: string;
|
|
2785
|
-
type:
|
|
2804
|
+
type: "Software";
|
|
2786
2805
|
label: string;
|
|
2806
|
+
usedSpecificObject?: string | undefined;
|
|
2787
2807
|
softwareVersion?: string | undefined;
|
|
2788
2808
|
} | undefined;
|
|
2789
2809
|
selector?: {
|
|
@@ -2931,8 +2951,9 @@ declare const WebAnnotation: z.ZodObject<{
|
|
|
2931
2951
|
};
|
|
2932
2952
|
renderedVia?: {
|
|
2933
2953
|
id: string;
|
|
2934
|
-
type:
|
|
2954
|
+
type: "Software";
|
|
2935
2955
|
label: string;
|
|
2956
|
+
usedSpecificObject?: string | undefined;
|
|
2936
2957
|
softwareVersion?: string | undefined;
|
|
2937
2958
|
} | undefined;
|
|
2938
2959
|
selector?: {
|
|
@@ -3196,8 +3217,9 @@ declare const WebAnnotation: z.ZodObject<{
|
|
|
3196
3217
|
};
|
|
3197
3218
|
renderedVia?: {
|
|
3198
3219
|
id: string;
|
|
3199
|
-
type:
|
|
3220
|
+
type: "Software";
|
|
3200
3221
|
label: string;
|
|
3222
|
+
usedSpecificObject?: string | undefined;
|
|
3201
3223
|
softwareVersion?: string | undefined;
|
|
3202
3224
|
} | undefined;
|
|
3203
3225
|
selector?: {
|
|
@@ -3438,12 +3460,15 @@ declare const WebAnnotation: z.ZodObject<{
|
|
|
3438
3460
|
description?: string | undefined;
|
|
3439
3461
|
}[]);
|
|
3440
3462
|
'@context': ["http://www.w3.org/ns/anno.jsonld", "https://wa.lincsproject.ca/v1/ns/anno.jsonld"];
|
|
3441
|
-
motivation:
|
|
3463
|
+
motivation: Partial<Record<"identifying" | "describing" | "correcting" | "tagging" | "classifying" | "linking" | "citing", {
|
|
3464
|
+
type: "crm:E55_Type";
|
|
3465
|
+
}>>;
|
|
3442
3466
|
created: string;
|
|
3443
3467
|
generator: {
|
|
3444
3468
|
id: string;
|
|
3445
|
-
type:
|
|
3469
|
+
type: "Software";
|
|
3446
3470
|
label: string;
|
|
3471
|
+
usedSpecificObject?: string | undefined;
|
|
3447
3472
|
softwareVersion?: string | undefined;
|
|
3448
3473
|
};
|
|
3449
3474
|
modified?: string | undefined;
|
|
@@ -3484,8 +3509,9 @@ declare const WebAnnotation: z.ZodObject<{
|
|
|
3484
3509
|
};
|
|
3485
3510
|
renderedVia?: {
|
|
3486
3511
|
id: string;
|
|
3487
|
-
type:
|
|
3512
|
+
type: "Software";
|
|
3488
3513
|
label: string;
|
|
3514
|
+
usedSpecificObject?: string | undefined;
|
|
3489
3515
|
softwareVersion?: string | undefined;
|
|
3490
3516
|
} | undefined;
|
|
3491
3517
|
selector?: {
|
|
@@ -3726,12 +3752,15 @@ declare const WebAnnotation: z.ZodObject<{
|
|
|
3726
3752
|
description?: string | undefined;
|
|
3727
3753
|
}[]);
|
|
3728
3754
|
'@context': ["http://www.w3.org/ns/anno.jsonld", "https://wa.lincsproject.ca/v1/ns/anno.jsonld"];
|
|
3729
|
-
motivation:
|
|
3755
|
+
motivation: Partial<Record<"identifying" | "describing" | "correcting" | "tagging" | "classifying" | "linking" | "citing", {
|
|
3756
|
+
type: "crm:E55_Type";
|
|
3757
|
+
}>>;
|
|
3730
3758
|
created: string;
|
|
3731
3759
|
generator: {
|
|
3732
3760
|
id: string;
|
|
3733
|
-
type:
|
|
3761
|
+
type: "Software";
|
|
3734
3762
|
label: string;
|
|
3763
|
+
usedSpecificObject?: string | undefined;
|
|
3735
3764
|
softwareVersion?: string | undefined;
|
|
3736
3765
|
};
|
|
3737
3766
|
modified?: string | undefined;
|
|
@@ -3855,8 +3884,9 @@ declare const validator: _ajv.ValidateFunction<Required<{
|
|
|
3855
3884
|
};
|
|
3856
3885
|
renderedVia?: {
|
|
3857
3886
|
id: string;
|
|
3858
|
-
type:
|
|
3887
|
+
type: "Software";
|
|
3859
3888
|
label: string;
|
|
3889
|
+
usedSpecificObject?: string | undefined;
|
|
3860
3890
|
softwareVersion?: string | undefined;
|
|
3861
3891
|
} | undefined;
|
|
3862
3892
|
selector?: {
|
|
@@ -4097,12 +4127,15 @@ declare const validator: _ajv.ValidateFunction<Required<{
|
|
|
4097
4127
|
description?: string | undefined;
|
|
4098
4128
|
}[]);
|
|
4099
4129
|
'@context': ["http://www.w3.org/ns/anno.jsonld", "https://wa.lincsproject.ca/v1/ns/anno.jsonld"];
|
|
4100
|
-
motivation:
|
|
4130
|
+
motivation: Partial<Record<"identifying" | "describing" | "correcting" | "tagging" | "classifying" | "linking" | "citing", {
|
|
4131
|
+
type: "crm:E55_Type";
|
|
4132
|
+
}>>;
|
|
4101
4133
|
created: string;
|
|
4102
4134
|
generator: {
|
|
4103
4135
|
id: string;
|
|
4104
|
-
type:
|
|
4136
|
+
type: "Software";
|
|
4105
4137
|
label: string;
|
|
4138
|
+
usedSpecificObject?: string | undefined;
|
|
4106
4139
|
softwareVersion?: string | undefined;
|
|
4107
4140
|
};
|
|
4108
4141
|
modified?: string | undefined;
|
|
@@ -4172,7 +4205,6 @@ type index_KeywordFolksnomyEntityType = KeywordFolksnomyEntityType;
|
|
|
4172
4205
|
type index_Language = Language;
|
|
4173
4206
|
type index_Link = Link;
|
|
4174
4207
|
type index_LinkEntityType = LinkEntityType;
|
|
4175
|
-
type index_Motivation = Motivation;
|
|
4176
4208
|
type index_Note = Note;
|
|
4177
4209
|
type index_NoteEntityType = NoteEntityType;
|
|
4178
4210
|
type index_Organization = Organization;
|
|
@@ -4265,7 +4297,7 @@ declare const index_workSchema: typeof workSchema;
|
|
|
4265
4297
|
declare const index_xpathSelectorExtendedSchema: typeof xpathSelectorExtendedSchema;
|
|
4266
4298
|
declare const index_xpathSelectorSchema: typeof xpathSelectorSchema;
|
|
4267
4299
|
declare namespace index {
|
|
4268
|
-
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
|
|
4300
|
+
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_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 };
|
|
4269
4301
|
}
|
|
4270
4302
|
|
|
4271
|
-
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,
|
|
4303
|
+
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, 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 };
|