@lincs.project/webannotation-schema 1.8.0 → 1.9.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 +38 -32
- package/dist/index.d.ts +38 -32
- package/dist/index.js +74 -161
- package/dist/index.mjs +73 -161
- package/dist/v1/jsonld/context.jsonld +25 -10
- package/dist/v1/jsonld/schema.jsonld +26 -181
- package/dist/v1/standalone/linc-wa-validator.js +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -19,36 +19,51 @@ declare const schemaContext: {
|
|
|
19
19
|
wikidata: string;
|
|
20
20
|
crm: string;
|
|
21
21
|
crmdig: string;
|
|
22
|
-
|
|
22
|
+
citing: string;
|
|
23
|
+
correcting: string;
|
|
24
|
+
'oa:identifying': {
|
|
25
|
+
type: string;
|
|
26
|
+
};
|
|
27
|
+
'oa:describing': {
|
|
28
|
+
type: string;
|
|
29
|
+
};
|
|
30
|
+
'oa:tagging': {
|
|
31
|
+
type: string;
|
|
32
|
+
};
|
|
33
|
+
'oa:classifying': {
|
|
34
|
+
type: string;
|
|
35
|
+
};
|
|
36
|
+
'oa:linking': {
|
|
37
|
+
type: string;
|
|
38
|
+
};
|
|
39
|
+
certainty: {
|
|
23
40
|
'@type': string;
|
|
24
41
|
'@id': string;
|
|
25
42
|
};
|
|
26
|
-
|
|
43
|
+
precision: {
|
|
27
44
|
'@type': string;
|
|
28
45
|
'@id': string;
|
|
29
46
|
};
|
|
30
47
|
contributor: string;
|
|
31
|
-
description: string;
|
|
32
48
|
entityType: {
|
|
33
49
|
'@type': string;
|
|
34
50
|
'@id': string;
|
|
35
51
|
};
|
|
36
|
-
|
|
37
|
-
modeExistence: string;
|
|
38
|
-
precision: {
|
|
52
|
+
additionalType: {
|
|
39
53
|
'@type': string;
|
|
40
54
|
'@id': string;
|
|
41
55
|
};
|
|
56
|
+
modeExistence: string;
|
|
57
|
+
description: string;
|
|
58
|
+
identifiedBy: string;
|
|
59
|
+
title: string;
|
|
60
|
+
usedSpecificObject: string;
|
|
42
61
|
softwareVersion: string;
|
|
43
62
|
status: {
|
|
44
63
|
'@type': string;
|
|
45
64
|
'@id': string;
|
|
46
65
|
};
|
|
47
|
-
title: string;
|
|
48
|
-
usedSpecificObject: string;
|
|
49
66
|
approved: string;
|
|
50
|
-
citing: string;
|
|
51
|
-
correcting: string;
|
|
52
67
|
draft: string;
|
|
53
68
|
published: string;
|
|
54
69
|
};
|
|
@@ -2147,17 +2162,13 @@ declare const definitionSchema: JSONSchemaType<Definition>;
|
|
|
2147
2162
|
|
|
2148
2163
|
declare const Status: readonly ["edit:statusDraft", "edit:statusApproved", "edit:statusPublished"];
|
|
2149
2164
|
type Status = (typeof Status)[number];
|
|
2165
|
+
declare const Motivation: readonly ["oa:identifying", "oa:describing", "correcting", "oa:tagging", "oa:classifying", "oa:linking", "citing"];
|
|
2166
|
+
type Motivation = (typeof Motivation)[number];
|
|
2150
2167
|
declare const WebAnnotation: z.ZodObject<{
|
|
2151
2168
|
'@context': z.ZodTuple<[z.ZodLiteral<"http://www.w3.org/ns/anno.jsonld">, z.ZodLiteral<"https://wa.lincsproject.ca/v1/ns/anno.jsonld">], null>;
|
|
2152
2169
|
id: z.ZodString;
|
|
2153
2170
|
type: z.ZodTuple<[z.ZodLiteral<"Annotation">, z.ZodLiteral<"crm:E33_Linguistic_Object">], null>;
|
|
2154
|
-
motivation: z.
|
|
2155
|
-
type: z.ZodLiteral<"crm:E55_Type">;
|
|
2156
|
-
}, "strip", z.ZodTypeAny, {
|
|
2157
|
-
type: "crm:E55_Type";
|
|
2158
|
-
}, {
|
|
2159
|
-
type: "crm:E55_Type";
|
|
2160
|
-
}>>;
|
|
2171
|
+
motivation: z.ZodEnum<["oa:identifying", "oa:describing", "correcting", "oa:tagging", "oa:classifying", "oa:linking", "citing"]>;
|
|
2161
2172
|
created: z.ZodString;
|
|
2162
2173
|
modified: z.ZodOptional<z.ZodString>;
|
|
2163
2174
|
creator: z.ZodOptional<z.ZodObject<{
|
|
@@ -3237,11 +3248,10 @@ declare const WebAnnotation: z.ZodObject<{
|
|
|
3237
3248
|
certainty: z.ZodOptional<z.ZodEnum<["edit:qualityLow", "edit:qualityMedium", "edit:qualityHigh", "edit:qualityUnknown"]>>;
|
|
3238
3249
|
precision: z.ZodOptional<z.ZodEnum<["edit:qualityLow", "edit:qualityMedium", "edit:qualityHigh", "edit:qualityUnknown"]>>;
|
|
3239
3250
|
label: z.ZodOptional<z.ZodString>;
|
|
3240
|
-
status: z.ZodEnum<["edit:statusDraft", "edit:statusApproved", "edit:statusPublished"]
|
|
3251
|
+
status: z.ZodOptional<z.ZodEnum<["edit:statusDraft", "edit:statusApproved", "edit:statusPublished"]>>;
|
|
3241
3252
|
}, "strip", z.ZodTypeAny, {
|
|
3242
3253
|
id: string;
|
|
3243
3254
|
type: ["Annotation", "crm:E33_Linguistic_Object"];
|
|
3244
|
-
status: "edit:statusApproved" | "edit:statusDraft" | "edit:statusPublished";
|
|
3245
3255
|
target: {
|
|
3246
3256
|
id: string;
|
|
3247
3257
|
type: ["SpecificResource", "crm:E73_Information_Object"];
|
|
@@ -3512,9 +3522,7 @@ declare const WebAnnotation: z.ZodObject<{
|
|
|
3512
3522
|
description?: string | undefined;
|
|
3513
3523
|
}[]);
|
|
3514
3524
|
'@context': ["http://www.w3.org/ns/anno.jsonld", "https://wa.lincsproject.ca/v1/ns/anno.jsonld"];
|
|
3515
|
-
motivation:
|
|
3516
|
-
type: "crm:E55_Type";
|
|
3517
|
-
}>>;
|
|
3525
|
+
motivation: "oa:identifying" | "oa:describing" | "correcting" | "oa:tagging" | "oa:classifying" | "oa:linking" | "citing";
|
|
3518
3526
|
created: string;
|
|
3519
3527
|
generator: {
|
|
3520
3528
|
id: string;
|
|
@@ -3541,10 +3549,10 @@ declare const WebAnnotation: z.ZodObject<{
|
|
|
3541
3549
|
certainty?: "edit:qualityLow" | "edit:qualityMedium" | "edit:qualityHigh" | "edit:qualityUnknown" | undefined;
|
|
3542
3550
|
precision?: "edit:qualityLow" | "edit:qualityMedium" | "edit:qualityHigh" | "edit:qualityUnknown" | undefined;
|
|
3543
3551
|
label?: string | undefined;
|
|
3552
|
+
status?: "edit:statusApproved" | "edit:statusDraft" | "edit:statusPublished" | undefined;
|
|
3544
3553
|
}, {
|
|
3545
3554
|
id: string;
|
|
3546
3555
|
type: ["Annotation", "crm:E33_Linguistic_Object"];
|
|
3547
|
-
status: "edit:statusApproved" | "edit:statusDraft" | "edit:statusPublished";
|
|
3548
3556
|
target: {
|
|
3549
3557
|
id: string;
|
|
3550
3558
|
type: ["SpecificResource", "crm:E73_Information_Object"];
|
|
@@ -3815,9 +3823,7 @@ declare const WebAnnotation: z.ZodObject<{
|
|
|
3815
3823
|
description?: string | undefined;
|
|
3816
3824
|
}[]);
|
|
3817
3825
|
'@context': ["http://www.w3.org/ns/anno.jsonld", "https://wa.lincsproject.ca/v1/ns/anno.jsonld"];
|
|
3818
|
-
motivation:
|
|
3819
|
-
type: "crm:E55_Type";
|
|
3820
|
-
}>>;
|
|
3826
|
+
motivation: "oa:identifying" | "oa:describing" | "correcting" | "oa:tagging" | "oa:classifying" | "oa:linking" | "citing";
|
|
3821
3827
|
created: string;
|
|
3822
3828
|
generator: {
|
|
3823
3829
|
id: string;
|
|
@@ -3844,6 +3850,7 @@ declare const WebAnnotation: z.ZodObject<{
|
|
|
3844
3850
|
certainty?: "edit:qualityLow" | "edit:qualityMedium" | "edit:qualityHigh" | "edit:qualityUnknown" | undefined;
|
|
3845
3851
|
precision?: "edit:qualityLow" | "edit:qualityMedium" | "edit:qualityHigh" | "edit:qualityUnknown" | undefined;
|
|
3846
3852
|
label?: string | undefined;
|
|
3853
|
+
status?: "edit:statusApproved" | "edit:statusDraft" | "edit:statusPublished" | undefined;
|
|
3847
3854
|
}>;
|
|
3848
3855
|
type WebAnnotation = z.infer<typeof WebAnnotation>;
|
|
3849
3856
|
declare const webAnnotationSchema: JSONSchemaType<Required<WebAnnotation>>;
|
|
@@ -3930,7 +3937,6 @@ declare const ajv: ajv_dist_core.default;
|
|
|
3930
3937
|
declare const validator: _ajv.ValidateFunction<Required<{
|
|
3931
3938
|
id: string;
|
|
3932
3939
|
type: ["Annotation", "crm:E33_Linguistic_Object"];
|
|
3933
|
-
status: "edit:statusApproved" | "edit:statusDraft" | "edit:statusPublished";
|
|
3934
3940
|
target: {
|
|
3935
3941
|
id: string;
|
|
3936
3942
|
type: ["SpecificResource", "crm:E73_Information_Object"];
|
|
@@ -4201,9 +4207,7 @@ declare const validator: _ajv.ValidateFunction<Required<{
|
|
|
4201
4207
|
description?: string | undefined;
|
|
4202
4208
|
}[]);
|
|
4203
4209
|
'@context': ["http://www.w3.org/ns/anno.jsonld", "https://wa.lincsproject.ca/v1/ns/anno.jsonld"];
|
|
4204
|
-
motivation:
|
|
4205
|
-
type: "crm:E55_Type";
|
|
4206
|
-
}>>;
|
|
4210
|
+
motivation: "oa:identifying" | "oa:describing" | "correcting" | "oa:tagging" | "oa:classifying" | "oa:linking" | "citing";
|
|
4207
4211
|
created: string;
|
|
4208
4212
|
generator: {
|
|
4209
4213
|
id: string;
|
|
@@ -4230,6 +4234,7 @@ declare const validator: _ajv.ValidateFunction<Required<{
|
|
|
4230
4234
|
certainty?: "edit:qualityLow" | "edit:qualityMedium" | "edit:qualityHigh" | "edit:qualityUnknown" | undefined;
|
|
4231
4235
|
precision?: "edit:qualityLow" | "edit:qualityMedium" | "edit:qualityHigh" | "edit:qualityUnknown" | undefined;
|
|
4232
4236
|
label?: string | undefined;
|
|
4237
|
+
status?: "edit:statusApproved" | "edit:statusDraft" | "edit:statusPublished" | undefined;
|
|
4233
4238
|
}>>;
|
|
4234
4239
|
/**
|
|
4235
4240
|
* The function `validate` takes an annotation object as input and returns a validation result object
|
|
@@ -4279,6 +4284,7 @@ type index_KeywordFolksnomyEntityType = KeywordFolksnomyEntityType;
|
|
|
4279
4284
|
type index_Language = Language;
|
|
4280
4285
|
type index_Link = Link;
|
|
4281
4286
|
type index_LinkEntityType = LinkEntityType;
|
|
4287
|
+
type index_Motivation = Motivation;
|
|
4282
4288
|
type index_Note = Note;
|
|
4283
4289
|
type index_NoteEntityType = NoteEntityType;
|
|
4284
4290
|
type index_Organization = Organization;
|
|
@@ -4371,7 +4377,7 @@ declare const index_workSchema: typeof workSchema;
|
|
|
4371
4377
|
declare const index_xpathSelectorExtendedSchema: typeof xpathSelectorExtendedSchema;
|
|
4372
4378
|
declare const index_xpathSelectorSchema: typeof xpathSelectorSchema;
|
|
4373
4379
|
declare namespace index {
|
|
4374
|
-
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 };
|
|
4380
|
+
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 };
|
|
4375
4381
|
}
|
|
4376
4382
|
|
|
4377
|
-
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 };
|
|
4383
|
+
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 };
|
package/dist/index.d.ts
CHANGED
|
@@ -19,36 +19,51 @@ declare const schemaContext: {
|
|
|
19
19
|
wikidata: string;
|
|
20
20
|
crm: string;
|
|
21
21
|
crmdig: string;
|
|
22
|
-
|
|
22
|
+
citing: string;
|
|
23
|
+
correcting: string;
|
|
24
|
+
'oa:identifying': {
|
|
25
|
+
type: string;
|
|
26
|
+
};
|
|
27
|
+
'oa:describing': {
|
|
28
|
+
type: string;
|
|
29
|
+
};
|
|
30
|
+
'oa:tagging': {
|
|
31
|
+
type: string;
|
|
32
|
+
};
|
|
33
|
+
'oa:classifying': {
|
|
34
|
+
type: string;
|
|
35
|
+
};
|
|
36
|
+
'oa:linking': {
|
|
37
|
+
type: string;
|
|
38
|
+
};
|
|
39
|
+
certainty: {
|
|
23
40
|
'@type': string;
|
|
24
41
|
'@id': string;
|
|
25
42
|
};
|
|
26
|
-
|
|
43
|
+
precision: {
|
|
27
44
|
'@type': string;
|
|
28
45
|
'@id': string;
|
|
29
46
|
};
|
|
30
47
|
contributor: string;
|
|
31
|
-
description: string;
|
|
32
48
|
entityType: {
|
|
33
49
|
'@type': string;
|
|
34
50
|
'@id': string;
|
|
35
51
|
};
|
|
36
|
-
|
|
37
|
-
modeExistence: string;
|
|
38
|
-
precision: {
|
|
52
|
+
additionalType: {
|
|
39
53
|
'@type': string;
|
|
40
54
|
'@id': string;
|
|
41
55
|
};
|
|
56
|
+
modeExistence: string;
|
|
57
|
+
description: string;
|
|
58
|
+
identifiedBy: string;
|
|
59
|
+
title: string;
|
|
60
|
+
usedSpecificObject: string;
|
|
42
61
|
softwareVersion: string;
|
|
43
62
|
status: {
|
|
44
63
|
'@type': string;
|
|
45
64
|
'@id': string;
|
|
46
65
|
};
|
|
47
|
-
title: string;
|
|
48
|
-
usedSpecificObject: string;
|
|
49
66
|
approved: string;
|
|
50
|
-
citing: string;
|
|
51
|
-
correcting: string;
|
|
52
67
|
draft: string;
|
|
53
68
|
published: string;
|
|
54
69
|
};
|
|
@@ -2147,17 +2162,13 @@ declare const definitionSchema: JSONSchemaType<Definition>;
|
|
|
2147
2162
|
|
|
2148
2163
|
declare const Status: readonly ["edit:statusDraft", "edit:statusApproved", "edit:statusPublished"];
|
|
2149
2164
|
type Status = (typeof Status)[number];
|
|
2165
|
+
declare const Motivation: readonly ["oa:identifying", "oa:describing", "correcting", "oa:tagging", "oa:classifying", "oa:linking", "citing"];
|
|
2166
|
+
type Motivation = (typeof Motivation)[number];
|
|
2150
2167
|
declare const WebAnnotation: z.ZodObject<{
|
|
2151
2168
|
'@context': z.ZodTuple<[z.ZodLiteral<"http://www.w3.org/ns/anno.jsonld">, z.ZodLiteral<"https://wa.lincsproject.ca/v1/ns/anno.jsonld">], null>;
|
|
2152
2169
|
id: z.ZodString;
|
|
2153
2170
|
type: z.ZodTuple<[z.ZodLiteral<"Annotation">, z.ZodLiteral<"crm:E33_Linguistic_Object">], null>;
|
|
2154
|
-
motivation: z.
|
|
2155
|
-
type: z.ZodLiteral<"crm:E55_Type">;
|
|
2156
|
-
}, "strip", z.ZodTypeAny, {
|
|
2157
|
-
type: "crm:E55_Type";
|
|
2158
|
-
}, {
|
|
2159
|
-
type: "crm:E55_Type";
|
|
2160
|
-
}>>;
|
|
2171
|
+
motivation: z.ZodEnum<["oa:identifying", "oa:describing", "correcting", "oa:tagging", "oa:classifying", "oa:linking", "citing"]>;
|
|
2161
2172
|
created: z.ZodString;
|
|
2162
2173
|
modified: z.ZodOptional<z.ZodString>;
|
|
2163
2174
|
creator: z.ZodOptional<z.ZodObject<{
|
|
@@ -3237,11 +3248,10 @@ declare const WebAnnotation: z.ZodObject<{
|
|
|
3237
3248
|
certainty: z.ZodOptional<z.ZodEnum<["edit:qualityLow", "edit:qualityMedium", "edit:qualityHigh", "edit:qualityUnknown"]>>;
|
|
3238
3249
|
precision: z.ZodOptional<z.ZodEnum<["edit:qualityLow", "edit:qualityMedium", "edit:qualityHigh", "edit:qualityUnknown"]>>;
|
|
3239
3250
|
label: z.ZodOptional<z.ZodString>;
|
|
3240
|
-
status: z.ZodEnum<["edit:statusDraft", "edit:statusApproved", "edit:statusPublished"]
|
|
3251
|
+
status: z.ZodOptional<z.ZodEnum<["edit:statusDraft", "edit:statusApproved", "edit:statusPublished"]>>;
|
|
3241
3252
|
}, "strip", z.ZodTypeAny, {
|
|
3242
3253
|
id: string;
|
|
3243
3254
|
type: ["Annotation", "crm:E33_Linguistic_Object"];
|
|
3244
|
-
status: "edit:statusApproved" | "edit:statusDraft" | "edit:statusPublished";
|
|
3245
3255
|
target: {
|
|
3246
3256
|
id: string;
|
|
3247
3257
|
type: ["SpecificResource", "crm:E73_Information_Object"];
|
|
@@ -3512,9 +3522,7 @@ declare const WebAnnotation: z.ZodObject<{
|
|
|
3512
3522
|
description?: string | undefined;
|
|
3513
3523
|
}[]);
|
|
3514
3524
|
'@context': ["http://www.w3.org/ns/anno.jsonld", "https://wa.lincsproject.ca/v1/ns/anno.jsonld"];
|
|
3515
|
-
motivation:
|
|
3516
|
-
type: "crm:E55_Type";
|
|
3517
|
-
}>>;
|
|
3525
|
+
motivation: "oa:identifying" | "oa:describing" | "correcting" | "oa:tagging" | "oa:classifying" | "oa:linking" | "citing";
|
|
3518
3526
|
created: string;
|
|
3519
3527
|
generator: {
|
|
3520
3528
|
id: string;
|
|
@@ -3541,10 +3549,10 @@ declare const WebAnnotation: z.ZodObject<{
|
|
|
3541
3549
|
certainty?: "edit:qualityLow" | "edit:qualityMedium" | "edit:qualityHigh" | "edit:qualityUnknown" | undefined;
|
|
3542
3550
|
precision?: "edit:qualityLow" | "edit:qualityMedium" | "edit:qualityHigh" | "edit:qualityUnknown" | undefined;
|
|
3543
3551
|
label?: string | undefined;
|
|
3552
|
+
status?: "edit:statusApproved" | "edit:statusDraft" | "edit:statusPublished" | undefined;
|
|
3544
3553
|
}, {
|
|
3545
3554
|
id: string;
|
|
3546
3555
|
type: ["Annotation", "crm:E33_Linguistic_Object"];
|
|
3547
|
-
status: "edit:statusApproved" | "edit:statusDraft" | "edit:statusPublished";
|
|
3548
3556
|
target: {
|
|
3549
3557
|
id: string;
|
|
3550
3558
|
type: ["SpecificResource", "crm:E73_Information_Object"];
|
|
@@ -3815,9 +3823,7 @@ declare const WebAnnotation: z.ZodObject<{
|
|
|
3815
3823
|
description?: string | undefined;
|
|
3816
3824
|
}[]);
|
|
3817
3825
|
'@context': ["http://www.w3.org/ns/anno.jsonld", "https://wa.lincsproject.ca/v1/ns/anno.jsonld"];
|
|
3818
|
-
motivation:
|
|
3819
|
-
type: "crm:E55_Type";
|
|
3820
|
-
}>>;
|
|
3826
|
+
motivation: "oa:identifying" | "oa:describing" | "correcting" | "oa:tagging" | "oa:classifying" | "oa:linking" | "citing";
|
|
3821
3827
|
created: string;
|
|
3822
3828
|
generator: {
|
|
3823
3829
|
id: string;
|
|
@@ -3844,6 +3850,7 @@ declare const WebAnnotation: z.ZodObject<{
|
|
|
3844
3850
|
certainty?: "edit:qualityLow" | "edit:qualityMedium" | "edit:qualityHigh" | "edit:qualityUnknown" | undefined;
|
|
3845
3851
|
precision?: "edit:qualityLow" | "edit:qualityMedium" | "edit:qualityHigh" | "edit:qualityUnknown" | undefined;
|
|
3846
3852
|
label?: string | undefined;
|
|
3853
|
+
status?: "edit:statusApproved" | "edit:statusDraft" | "edit:statusPublished" | undefined;
|
|
3847
3854
|
}>;
|
|
3848
3855
|
type WebAnnotation = z.infer<typeof WebAnnotation>;
|
|
3849
3856
|
declare const webAnnotationSchema: JSONSchemaType<Required<WebAnnotation>>;
|
|
@@ -3930,7 +3937,6 @@ declare const ajv: ajv_dist_core.default;
|
|
|
3930
3937
|
declare const validator: _ajv.ValidateFunction<Required<{
|
|
3931
3938
|
id: string;
|
|
3932
3939
|
type: ["Annotation", "crm:E33_Linguistic_Object"];
|
|
3933
|
-
status: "edit:statusApproved" | "edit:statusDraft" | "edit:statusPublished";
|
|
3934
3940
|
target: {
|
|
3935
3941
|
id: string;
|
|
3936
3942
|
type: ["SpecificResource", "crm:E73_Information_Object"];
|
|
@@ -4201,9 +4207,7 @@ declare const validator: _ajv.ValidateFunction<Required<{
|
|
|
4201
4207
|
description?: string | undefined;
|
|
4202
4208
|
}[]);
|
|
4203
4209
|
'@context': ["http://www.w3.org/ns/anno.jsonld", "https://wa.lincsproject.ca/v1/ns/anno.jsonld"];
|
|
4204
|
-
motivation:
|
|
4205
|
-
type: "crm:E55_Type";
|
|
4206
|
-
}>>;
|
|
4210
|
+
motivation: "oa:identifying" | "oa:describing" | "correcting" | "oa:tagging" | "oa:classifying" | "oa:linking" | "citing";
|
|
4207
4211
|
created: string;
|
|
4208
4212
|
generator: {
|
|
4209
4213
|
id: string;
|
|
@@ -4230,6 +4234,7 @@ declare const validator: _ajv.ValidateFunction<Required<{
|
|
|
4230
4234
|
certainty?: "edit:qualityLow" | "edit:qualityMedium" | "edit:qualityHigh" | "edit:qualityUnknown" | undefined;
|
|
4231
4235
|
precision?: "edit:qualityLow" | "edit:qualityMedium" | "edit:qualityHigh" | "edit:qualityUnknown" | undefined;
|
|
4232
4236
|
label?: string | undefined;
|
|
4237
|
+
status?: "edit:statusApproved" | "edit:statusDraft" | "edit:statusPublished" | undefined;
|
|
4233
4238
|
}>>;
|
|
4234
4239
|
/**
|
|
4235
4240
|
* The function `validate` takes an annotation object as input and returns a validation result object
|
|
@@ -4279,6 +4284,7 @@ type index_KeywordFolksnomyEntityType = KeywordFolksnomyEntityType;
|
|
|
4279
4284
|
type index_Language = Language;
|
|
4280
4285
|
type index_Link = Link;
|
|
4281
4286
|
type index_LinkEntityType = LinkEntityType;
|
|
4287
|
+
type index_Motivation = Motivation;
|
|
4282
4288
|
type index_Note = Note;
|
|
4283
4289
|
type index_NoteEntityType = NoteEntityType;
|
|
4284
4290
|
type index_Organization = Organization;
|
|
@@ -4371,7 +4377,7 @@ declare const index_workSchema: typeof workSchema;
|
|
|
4371
4377
|
declare const index_xpathSelectorExtendedSchema: typeof xpathSelectorExtendedSchema;
|
|
4372
4378
|
declare const index_xpathSelectorSchema: typeof xpathSelectorSchema;
|
|
4373
4379
|
declare namespace index {
|
|
4374
|
-
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 };
|
|
4380
|
+
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 };
|
|
4375
4381
|
}
|
|
4376
4382
|
|
|
4377
|
-
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 };
|
|
4383
|
+
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 };
|