-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcampaign.yml
66 lines (60 loc) · 1.64 KB
/
campaign.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
title: Campaign
description: >
Information about the campaign on which data were collected.
fields:
- name: RecordType
description: >
Record type. Use `EC` for campaign records.
type: string
constraints:
required: true
pattern: 'EC'
- name: CampaignID
description: >
Identifier of the campaign.
Must be unique across the entire ESAS database (e.g. by prepending the identifier with the
`DataRightsHolder` such as `inbo:12345`).
Must be stable, as it is used in combination with `DataRightsHolder` to detect
resubmissions of data.
type: string
constraints:
required: true
unique: true
maxLength: 50
- name: DataAccess
description: >
Access to the data (`Public` or `Restricted`).
See the [ICES Data Policy](https://www.ices.dk/data/guidelines-and-policy/Pages/ICES-data-policy.aspx)
for conditions.
type: string
vocabulary:
text: Data_access
href: https://vocab.ices.dk/?ref=1435
constraints:
required: true
enum:
- Public
- Restricted
- name: StartDate
description: >
Start date of the campaign, formatted as `YYYY-MM-DD`.
type: date
constraints:
required: false
- name: EndDate
description: >
End date of the campaign, formatted as `YYYY-MM-DD`.
type: date
constraints:
required: false
- name: Notes
description: >
Additional details about the campaign, such as research purpose, area covered or route.
type: string
constraints:
required: false
maxLength: 300
missingValues:
- ''
- NA
primaryKey: CampaignID