@magda/registry-aspects 2.0.0-alpha.0 → 2.0.0-alpha.1
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/access-control.schema.json +1 -7
- package/package.json +1 -1
- package/publishing.schema.json +20 -2
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"minLength": 36,
|
|
11
11
|
"maxLength": 36
|
|
12
12
|
},
|
|
13
|
-
"
|
|
13
|
+
"orgUnitId": {
|
|
14
14
|
"title": "the id of the organisation that the dataset belongs to",
|
|
15
15
|
"type": "string",
|
|
16
16
|
"minLength": 36,
|
|
@@ -24,12 +24,6 @@
|
|
|
24
24
|
"minLength": 36,
|
|
25
25
|
"maxLength": 36
|
|
26
26
|
}
|
|
27
|
-
},
|
|
28
|
-
"custodianOrgUnitId": {
|
|
29
|
-
"title": "the id of the data custodian organisation unit",
|
|
30
|
-
"type": "string",
|
|
31
|
-
"minLength": 36,
|
|
32
|
-
"maxLength": 36
|
|
33
27
|
}
|
|
34
28
|
}
|
|
35
29
|
}
|
package/package.json
CHANGED
package/publishing.schema.json
CHANGED
|
@@ -10,11 +10,29 @@
|
|
|
10
10
|
"default": "published",
|
|
11
11
|
"enum": ["draft", "published", "archived"]
|
|
12
12
|
},
|
|
13
|
+
"custodianOrgUnitId": {
|
|
14
|
+
"title": "the id of organisational unit that should be referenced as the data custodian",
|
|
15
|
+
"type": "string",
|
|
16
|
+
"minLength": 36,
|
|
17
|
+
"maxLength": 36
|
|
18
|
+
},
|
|
19
|
+
"managingOrgUnitId": {
|
|
20
|
+
"title": "the id of organisational unit that is responsible for maintaining this dataset",
|
|
21
|
+
"type": "string",
|
|
22
|
+
"minLength": 36,
|
|
23
|
+
"maxLength": 36
|
|
24
|
+
},
|
|
13
25
|
"level": {
|
|
14
26
|
"title": "Level dataset is visible at",
|
|
15
27
|
"type": "string",
|
|
16
|
-
"default": "
|
|
17
|
-
"enum": [
|
|
28
|
+
"default": "organization",
|
|
29
|
+
"enum": [
|
|
30
|
+
"organization",
|
|
31
|
+
"custodian",
|
|
32
|
+
"team",
|
|
33
|
+
"creatorOrgUnit",
|
|
34
|
+
"selectedOrgUnit"
|
|
35
|
+
]
|
|
18
36
|
},
|
|
19
37
|
"contactPointDisplay": {
|
|
20
38
|
"title": "What should be shown for the contact point(s) of a dataset",
|