This repository was archived by the owner on Jun 6, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdatapackage.json
More file actions
94 lines (94 loc) · 2.48 KB
/
datapackage.json
File metadata and controls
94 lines (94 loc) · 2.48 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"profile": "data-package",
"name": "clarvia-workflow-data",
"title": "Clarvia Workflow Data",
"description": "Source-backed workflow data, schemas, provenance, exports, and validation for Clarvia's bereavement administration infrastructure.",
"homepage": "https://github.com/clarvia-org/workflow-data",
"version": "0.1.0-alpha.0",
"licenses": [
{
"name": "CC-BY-4.0",
"title": "Creative Commons Attribution 4.0 International",
"path": "LICENSES/CC-BY-4.0.txt"
},
{
"name": "Apache-2.0",
"title": "Apache License 2.0",
"path": "LICENSES/Apache-2.0.txt"
}
],
"contributors": [
{
"title": "CLARVIA ASBL",
"role": "maintainer"
}
],
"keywords": [
"bereavement",
"workflow",
"open-data",
"public-interest",
"provenance",
"interoperability",
"Luxembourg",
"Europe"
],
"resources": [
{
"name": "sources",
"path": "data/sources/**/*.yaml",
"format": "yaml",
"mediatype": "application/x-yaml",
"schema": "schemas/v0.1/source.schema.json"
},
{
"name": "institutions",
"path": "data/institutions/**/*.yaml",
"format": "yaml",
"mediatype": "application/x-yaml",
"schema": "schemas/v0.1/institution.schema.json"
},
{
"name": "document-requirements",
"path": "data/document_requirements/**/*.yaml",
"format": "yaml",
"mediatype": "application/x-yaml",
"schema": "schemas/v0.1/document_requirement.schema.json"
},
{
"name": "deadlines",
"path": "data/deadlines/**/*.yaml",
"format": "yaml",
"mediatype": "application/x-yaml",
"schema": "schemas/v0.1/deadline.schema.json"
},
{
"name": "conditions",
"path": "data/conditions/**/*.yaml",
"format": "yaml",
"mediatype": "application/x-yaml",
"schema": "schemas/v0.1/condition.schema.json"
},
{
"name": "tasks",
"path": "data/tasks/**/*.yaml",
"format": "yaml",
"mediatype": "application/x-yaml",
"schema": "schemas/v0.1/task.schema.json"
},
{
"name": "workflows",
"path": "data/workflows/**/*.yaml",
"format": "yaml",
"mediatype": "application/x-yaml",
"schema": "schemas/v0.1/workflow.schema.json"
},
{
"name": "scenarios",
"path": "data/scenarios/**/*.yaml",
"format": "yaml",
"mediatype": "application/x-yaml",
"schema": "schemas/v0.1/scenario.schema.json"
}
]
}