forked from valueflows/valueflows
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKind.js
35 lines (34 loc) · 871 Bytes
/
Kind.js
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
module.exports = {
id: "Kind",
type: 'object',
prefixes: {
"": "http://schema.org/",
"qudt": "http://qudt.org/1.1/schema/qudt",
},
context: "qudt:QuantityKind",
description: "A kind is any observable property that can be measured and quantified numerically.",
properties: {
description: {
description: "A description of the kind.",
context: "qudt:description",
type: "string",
},
abbreviation: {
description: "An abbreviation of the kind.",
context: "qudt:abbreviation",
type: "string",
},
symbol: {
description: "A symbol of the kind.",
context: "qudt:symbol",
type: "string",
},
generalization: {
description: "The kind that this is generalized from.",
context: "qudt:quantityKind",
$ref: "Kind",
},
},
};
module.exports.dependencies = {
}