@luomus/laji-schema 2.0.365 → 2.0.366
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/dto/Document.dto.ts +6 -0
- package/dist/dto/Gathering.dto.ts +6 -0
- package/dist/dto/GatheringEvent.dto.ts +6 -0
- package/dist/dto/TraitSubject.dto.ts +6 -0
- package/dist/dto/UnitGathering.dto.ts +6 -0
- package/dist/types/classes/Document.d.ts +6 -0
- package/dist/types/classes/Gathering.d.ts +6 -0
- package/dist/types/classes/GatheringEvent.d.ts +6 -0
- package/dist/types/classes/TraitSubject.d.ts +6 -0
- package/dist/types/classes/UnitGathering.d.ts +6 -0
- package/dist/types/models/Document.d.ts +6 -0
- package/dist/types/models/Gathering.d.ts +6 -0
- package/dist/types/models/GatheringEvent.d.ts +6 -0
- package/dist/types/models/TraitSubject.d.ts +6 -0
- package/dist/types/models/UnitGathering.d.ts +6 -0
- package/package.json +1 -1
package/dist/dto/Document.dto.ts
CHANGED
|
@@ -155,6 +155,9 @@ export class Document {
|
|
|
155
155
|
* Additional information to the data in each section.
|
|
156
156
|
*/
|
|
157
157
|
notes?: string;
|
|
158
|
+
/**
|
|
159
|
+
* ID for the observation in another system, e.g. Vihko/Notebook. Format System:identifier.
|
|
160
|
+
*/
|
|
158
161
|
observationID?: string;
|
|
159
162
|
/**
|
|
160
163
|
* Original catalogue number or other original identifier of the specimen. E.g. H9000000
|
|
@@ -180,6 +183,9 @@ export class Document {
|
|
|
180
183
|
* Publication references or doi's that refer to this specimen
|
|
181
184
|
*/
|
|
182
185
|
publication?: string[];
|
|
186
|
+
/**
|
|
187
|
+
* Optical character recognition or AI generated data in its raw format, errors and all.
|
|
188
|
+
*/
|
|
183
189
|
rawOCRData?: string;
|
|
184
190
|
/**
|
|
185
191
|
* Relationship to another taxon OR specimen. Choose relationship type as prefix and give taxon name or specimen identifier thereafter, e.g. "parasite: Parasiticus specius" OR "host:http://tun.fi/JAA.123"
|
|
@@ -100,7 +100,13 @@ export class Gathering {
|
|
|
100
100
|
* County (piirikunta, kreivikunta etc.)
|
|
101
101
|
*/
|
|
102
102
|
county?: string;
|
|
103
|
+
/**
|
|
104
|
+
* Collection date as exact date or start date for a time period.
|
|
105
|
+
*/
|
|
103
106
|
dateBegin?: string;
|
|
107
|
+
/**
|
|
108
|
+
* End date for a collection time period, if exact date is not know.
|
|
109
|
+
*/
|
|
104
110
|
dateEnd?: string;
|
|
105
111
|
/**
|
|
106
112
|
* Date just as it appears on the label or other original source, no interpretation, errors and all
|
|
@@ -29,7 +29,13 @@ export class GatheringEvent {
|
|
|
29
29
|
cloudCoverEnd?: MYCloudCoverOktaEnum;
|
|
30
30
|
cloudCoverStart?: MYCloudCoverOktaEnum;
|
|
31
31
|
completeList?: CompleteList;
|
|
32
|
+
/**
|
|
33
|
+
* Collection date as exact date or start date for a time period.
|
|
34
|
+
*/
|
|
32
35
|
dateBegin?: string;
|
|
36
|
+
/**
|
|
37
|
+
* End date for a collection time period, if exact date is not know.
|
|
38
|
+
*/
|
|
33
39
|
dateEnd?: string;
|
|
34
40
|
gatheringFact?: GatheringFact;
|
|
35
41
|
geometry?: {
|
|
@@ -19,7 +19,13 @@ export class TraitSubject {
|
|
|
19
19
|
* Country name in English, or 2-letter country code, or name from label
|
|
20
20
|
*/
|
|
21
21
|
country?: string;
|
|
22
|
+
/**
|
|
23
|
+
* Collection date as exact date or start date for a time period.
|
|
24
|
+
*/
|
|
22
25
|
dateBegin?: string;
|
|
26
|
+
/**
|
|
27
|
+
* End date for a collection time period, if exact date is not know.
|
|
28
|
+
*/
|
|
23
29
|
dateEnd?: string;
|
|
24
30
|
habitat?: MYHabitatEnum[];
|
|
25
31
|
/**
|
|
@@ -8,7 +8,13 @@ export class UnitGathering {
|
|
|
8
8
|
"@context"?: string;
|
|
9
9
|
id?: string;
|
|
10
10
|
"@type"?: string;
|
|
11
|
+
/**
|
|
12
|
+
* Collection date as exact date or start date for a time period.
|
|
13
|
+
*/
|
|
11
14
|
dateBegin?: string;
|
|
15
|
+
/**
|
|
16
|
+
* End date for a collection time period, if exact date is not know.
|
|
17
|
+
*/
|
|
12
18
|
dateEnd?: string;
|
|
13
19
|
geometry?: {
|
|
14
20
|
[k: string]: unknown | undefined;
|
|
@@ -148,6 +148,9 @@ export declare class Document {
|
|
|
148
148
|
* Additional information to the data in each section.
|
|
149
149
|
*/
|
|
150
150
|
notes?: string;
|
|
151
|
+
/**
|
|
152
|
+
* ID for the observation in another system, e.g. Vihko/Notebook. Format System:identifier.
|
|
153
|
+
*/
|
|
151
154
|
observationID?: string;
|
|
152
155
|
/**
|
|
153
156
|
* Original catalogue number or other original identifier of the specimen. E.g. H9000000
|
|
@@ -173,6 +176,9 @@ export declare class Document {
|
|
|
173
176
|
* Publication references or doi's that refer to this specimen
|
|
174
177
|
*/
|
|
175
178
|
publication?: string[];
|
|
179
|
+
/**
|
|
180
|
+
* Optical character recognition or AI generated data in its raw format, errors and all.
|
|
181
|
+
*/
|
|
176
182
|
rawOCRData?: string;
|
|
177
183
|
/**
|
|
178
184
|
* Relationship to another taxon OR specimen. Choose relationship type as prefix and give taxon name or specimen identifier thereafter, e.g. "parasite: Parasiticus specius" OR "host:http://tun.fi/JAA.123"
|
|
@@ -93,7 +93,13 @@ export declare class Gathering {
|
|
|
93
93
|
* County (piirikunta, kreivikunta etc.)
|
|
94
94
|
*/
|
|
95
95
|
county?: string;
|
|
96
|
+
/**
|
|
97
|
+
* Collection date as exact date or start date for a time period.
|
|
98
|
+
*/
|
|
96
99
|
dateBegin?: string;
|
|
100
|
+
/**
|
|
101
|
+
* End date for a collection time period, if exact date is not know.
|
|
102
|
+
*/
|
|
97
103
|
dateEnd?: string;
|
|
98
104
|
/**
|
|
99
105
|
* Date just as it appears on the label or other original source, no interpretation, errors and all
|
|
@@ -22,7 +22,13 @@ export declare class GatheringEvent {
|
|
|
22
22
|
cloudCoverEnd?: MYCloudCoverOktaEnum;
|
|
23
23
|
cloudCoverStart?: MYCloudCoverOktaEnum;
|
|
24
24
|
completeList?: CompleteList;
|
|
25
|
+
/**
|
|
26
|
+
* Collection date as exact date or start date for a time period.
|
|
27
|
+
*/
|
|
25
28
|
dateBegin?: string;
|
|
29
|
+
/**
|
|
30
|
+
* End date for a collection time period, if exact date is not know.
|
|
31
|
+
*/
|
|
26
32
|
dateEnd?: string;
|
|
27
33
|
gatheringFact?: GatheringFact;
|
|
28
34
|
geometry?: {
|
|
@@ -12,7 +12,13 @@ export declare class TraitSubject {
|
|
|
12
12
|
* Country name in English, or 2-letter country code, or name from label
|
|
13
13
|
*/
|
|
14
14
|
country?: string;
|
|
15
|
+
/**
|
|
16
|
+
* Collection date as exact date or start date for a time period.
|
|
17
|
+
*/
|
|
15
18
|
dateBegin?: string;
|
|
19
|
+
/**
|
|
20
|
+
* End date for a collection time period, if exact date is not know.
|
|
21
|
+
*/
|
|
16
22
|
dateEnd?: string;
|
|
17
23
|
habitat?: MYHabitatEnum[];
|
|
18
24
|
/**
|
|
@@ -2,7 +2,13 @@ export declare class UnitGathering {
|
|
|
2
2
|
"@context"?: string;
|
|
3
3
|
id?: string;
|
|
4
4
|
"@type"?: string;
|
|
5
|
+
/**
|
|
6
|
+
* Collection date as exact date or start date for a time period.
|
|
7
|
+
*/
|
|
5
8
|
dateBegin?: string;
|
|
9
|
+
/**
|
|
10
|
+
* End date for a collection time period, if exact date is not know.
|
|
11
|
+
*/
|
|
6
12
|
dateEnd?: string;
|
|
7
13
|
geometry?: {
|
|
8
14
|
[k: string]: unknown | undefined;
|
|
@@ -148,6 +148,9 @@ export interface Document {
|
|
|
148
148
|
* Additional information to the data in each section.
|
|
149
149
|
*/
|
|
150
150
|
notes?: string;
|
|
151
|
+
/**
|
|
152
|
+
* ID for the observation in another system, e.g. Vihko/Notebook. Format System:identifier.
|
|
153
|
+
*/
|
|
151
154
|
observationID?: string;
|
|
152
155
|
/**
|
|
153
156
|
* Original catalogue number or other original identifier of the specimen. E.g. H9000000
|
|
@@ -173,6 +176,9 @@ export interface Document {
|
|
|
173
176
|
* Publication references or doi's that refer to this specimen
|
|
174
177
|
*/
|
|
175
178
|
publication?: string[];
|
|
179
|
+
/**
|
|
180
|
+
* Optical character recognition or AI generated data in its raw format, errors and all.
|
|
181
|
+
*/
|
|
176
182
|
rawOCRData?: string;
|
|
177
183
|
/**
|
|
178
184
|
* Relationship to another taxon OR specimen. Choose relationship type as prefix and give taxon name or specimen identifier thereafter, e.g. "parasite: Parasiticus specius" OR "host:http://tun.fi/JAA.123"
|
|
@@ -93,7 +93,13 @@ export interface Gathering {
|
|
|
93
93
|
* County (piirikunta, kreivikunta etc.)
|
|
94
94
|
*/
|
|
95
95
|
county?: string;
|
|
96
|
+
/**
|
|
97
|
+
* Collection date as exact date or start date for a time period.
|
|
98
|
+
*/
|
|
96
99
|
dateBegin?: string;
|
|
100
|
+
/**
|
|
101
|
+
* End date for a collection time period, if exact date is not know.
|
|
102
|
+
*/
|
|
97
103
|
dateEnd?: string;
|
|
98
104
|
/**
|
|
99
105
|
* Date just as it appears on the label or other original source, no interpretation, errors and all
|
|
@@ -22,7 +22,13 @@ export interface GatheringEvent {
|
|
|
22
22
|
cloudCoverEnd?: MYCloudCoverOktaEnum;
|
|
23
23
|
cloudCoverStart?: MYCloudCoverOktaEnum;
|
|
24
24
|
completeList?: CompleteList;
|
|
25
|
+
/**
|
|
26
|
+
* Collection date as exact date or start date for a time period.
|
|
27
|
+
*/
|
|
25
28
|
dateBegin?: string;
|
|
29
|
+
/**
|
|
30
|
+
* End date for a collection time period, if exact date is not know.
|
|
31
|
+
*/
|
|
26
32
|
dateEnd?: string;
|
|
27
33
|
gatheringFact?: GatheringFact;
|
|
28
34
|
geometry?: {
|
|
@@ -12,7 +12,13 @@ export interface TraitSubject {
|
|
|
12
12
|
* Country name in English, or 2-letter country code, or name from label
|
|
13
13
|
*/
|
|
14
14
|
country?: string;
|
|
15
|
+
/**
|
|
16
|
+
* Collection date as exact date or start date for a time period.
|
|
17
|
+
*/
|
|
15
18
|
dateBegin?: string;
|
|
19
|
+
/**
|
|
20
|
+
* End date for a collection time period, if exact date is not know.
|
|
21
|
+
*/
|
|
16
22
|
dateEnd?: string;
|
|
17
23
|
habitat?: MYHabitatEnum[];
|
|
18
24
|
/**
|
|
@@ -2,7 +2,13 @@ export interface UnitGathering {
|
|
|
2
2
|
"@context"?: string;
|
|
3
3
|
id?: string;
|
|
4
4
|
"@type"?: string;
|
|
5
|
+
/**
|
|
6
|
+
* Collection date as exact date or start date for a time period.
|
|
7
|
+
*/
|
|
5
8
|
dateBegin?: string;
|
|
9
|
+
/**
|
|
10
|
+
* End date for a collection time period, if exact date is not know.
|
|
11
|
+
*/
|
|
6
12
|
dateEnd?: string;
|
|
7
13
|
geometry?: {
|
|
8
14
|
[k: string]: unknown | undefined;
|