Skip to content

Commit f6fc85e

Browse files
author
Masaharu Hayashi
committed
add vocab
1 parent 0e69378 commit f6fc85e

1 file changed

Lines changed: 121 additions & 0 deletions

File tree

vocabularies/wk-context.jsonld

Lines changed: 121 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,121 @@
1+
{
2+
"@id": "https://purl.org/wk/v1/context",
3+
"@context": {
4+
"wk:editMode": {"@id": "wk:editMode"},
5+
"wk:feedbackMail": {"@id": "wk:feedbackMail"},
6+
"wk:grant": {"@id": "wk:grant"},
7+
"wk:index": {"@id": "wk:index"},
8+
"wk:itemLinks": {"@id": "wk:itemLinks"},
9+
"wk:metadataReplace": {"@id": "wk:metadataReplace"},
10+
"wk:metadataAutoFill": {"@id": "wk:metadataAutoFill"},
11+
"wk:publishStatus": {"@id": "wk:publishStatus"},
12+
"wk:requestMail": {"@id": "wk:requestMail"},
13+
"wk:saveAsIs": {"@id": "wk:saveAsIs"},
14+
"wk:textExtraction": {"@id": "wk:textExtraction"}
15+
},
16+
"name": "WEKO3 Repository Context",
17+
"description": "The custom vocabulary for WEKO3. This vocabulary is used to describe the properties of the WEKO3 repository.",
18+
"creator": {
19+
"@type": "Organization",
20+
"schema:name": "NII, National Institute of Informatics"
21+
},
22+
"dateCreated": "2025-02-11",
23+
"license": "",
24+
"isBasedOn": [
25+
{
26+
"@id": "https://schema.irdb.nii.ac.jp/ja",
27+
"scheme:name": "JPCOAR Schema"
28+
}
29+
],
30+
"properties": [
31+
{
32+
"@id": "wk:editMode",
33+
"@type": "rdf:Property",
34+
"schema:name": "Edit Mode",
35+
"schema:description": "Indicates the edit mode of the resource. The value is one of 'Keep' or 'Upgrade'.",
36+
"schema:domainIncludes": "schema:Dataset",
37+
"schema:rangeIncludes": "schema:Text"
38+
},
39+
{
40+
"@id": "wk:feedbackMail",
41+
"@type": "rdf:Property",
42+
"schema:name": "Feedback Mail List",
43+
"schema:description": "Indicates the feedback mail list associated with the resource.",
44+
"schema:domainIncludes": "schema:Dataset",
45+
"schema:rangeIncludes": "schema:Text"
46+
},
47+
{
48+
"@id": "wk:grant",
49+
"@type": "rdf:Property",
50+
"schema:name": "Grant Identifiers",
51+
"schema:description": "Indicates the grant identifiers associated with the resource.",
52+
"schema:domainIncludes": "schema:Dataset",
53+
"schema:rangeIncludes": ["jpcoar:identifier", "jpcoar:identifierRegistration"]
54+
},
55+
{
56+
"@id": "wk:index",
57+
"@type": "rdf:Property",
58+
"schema:name": "Index",
59+
"schema:description": "Indicates the identifier of the index.",
60+
"schema:domainIncludes": "schema:Dataset",
61+
"schema:rangeIncludes": "schema:Number"
62+
},
63+
{
64+
"@id": "wk:itemLinks",
65+
"@type": "rdf:Property",
66+
"schema:name": "Item Links",
67+
"schema:description": "Indicates the item links associated with the resource. ",
68+
"schema:domainIncludes": "schema:Dataset",
69+
"schema:rangeIncludes": "schema:Text"
70+
},
71+
{
72+
"@id": "wk:metadataReplace",
73+
"@type": "rdf:Property",
74+
"schema:name": "Metadata Replace",
75+
"schema:description": "Indicates whether the item metadata is replaced or not. The value is either 'true' or 'false'.",
76+
"schema:domainIncludes": "schema:Dataset",
77+
"schema:rangeIncludes": "schema:Boolean"
78+
},
79+
{
80+
"@id": "wk:metadataAutoFill",
81+
"@type": "rdf:Property",
82+
"schema:name": "Metadata Auto Fill",
83+
"schema:description": "Indicates whether to use the metadata auto-fill or not. The value is either 'true' or 'false'.",
84+
"schema:domainIncludes": "schema:Dataset",
85+
"schema:rangeIncludes": "schema:Boolean"
86+
},
87+
{
88+
"@id": "wk:publishStatus",
89+
"@type": "rdf:Property",
90+
"schema:name": "Publish Status",
91+
"schema:description": "Indicates whether the item is public or not. The value is either 'public' or 'private'.",
92+
"schema:domainIncludes": "schema:Dataset",
93+
"schema:rangeIncludes": "schema:Text"
94+
},
95+
{
96+
"@id": "wk:requestMail",
97+
"@type": "rdf:Property",
98+
"schema:name": "Request Mail List",
99+
"schema:description": "Indicates the request mail list associated with the resource.",
100+
"schema:domainIncludes": "schema:Dataset",
101+
"schema:rangeIncludes": "schema:Text"
102+
},
103+
{
104+
"@id": "wk:saveAsIs",
105+
"@type": "rdf:Property",
106+
"schema:name": "Save As Is",
107+
"schema:description": "Indicates whether the resource save as is or not. The value is either 'true' or 'false'.",
108+
"schema:domainIncludes": "schema:Dataset",
109+
"schema:rangeIncludes": "schema:Boolean"
110+
},
111+
{
112+
"@id": "wk:textExtraction",
113+
"@type": "rdf:Property",
114+
"schema:name": "Text Extraction",
115+
"schema:description": "Indicates whether the resource is full-text searchable or not. The value is either 'true' or 'false'.",
116+
"schema:domainIncludes": "schema:Dataset",
117+
"schema:rangeIncludes": "schema:Boolean"
118+
}
119+
]
120+
}
121+

0 commit comments

Comments
 (0)