-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathhk.js
52 lines (41 loc) · 2.71 KB
/
hk.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/*
* Copyright (c) 2016-present, IBM Research
* Licensed under The MIT License [see LICENSE for details]
*/
"use strict";
// Constants
exports.BODY_URI = '<http://research.ibm.com/ontologies/graph#body>';
// Entity types
exports.CONNECTOR_URI = '<http://research.ibm.com/ontologies/graph#connector>';
exports.CONTEXT_URI = '<http://research.ibm.com/ontologies/graph#context>';
exports.NODE_URI = '<http://research.ibm.com/ontologies/graph#node>';
exports.LINK_URI = '<http://research.ibm.com/ontologies/graph#link>';
exports.REF_URI = '<http://research.ibm.com/ontologies/graph#ref>';
exports.TRAIL_URI = '<http://research.ibm.com/ontologies/graph#trail>';
exports.VIRTUAL_CONTEXT_URI = '<http://research.ibm.com/ontologies/graph#virtualcontext>';
exports.VIRTUAL_NODE_URI = '<http://research.ibm.com/ontologies/graph#virtualnode>';
exports.VIRTUAL_LINK_URI = '<http://research.ibm.com/ontologies/graph#virtuallink>';
// exports.SUBGRAPH_OF_URI = '<http://research.ibm.com/ontologies/graph#subGraphOf>';
// Intrinsecs properties
exports.BOUND_COMPONENT_URI = '<http://research.ibm.com/ontologies/graph#boundComponent>';
exports.BOUND_ANCHOR_URI = '<http://research.ibm.com/ontologies/graph#boundAnchor>';
exports.BOUND_ROLE_URI = '<http://research.ibm.com/ontologies/graph#boundRole>';
exports.CLASSNAME_URI = '<http://research.ibm.com/ontologies/graph#className>';
exports.HAS_ROLE_URI = '<http://research.ibm.com/ontologies/graph#hasRole>';
exports.HAS_ROLE_NAME_URI = '<http://research.ibm.com/ontologies/graph#hasRoleName>';
exports.HAS_ROLE_TYPE_URI = '<http://research.ibm.com/ontologies/graph#hasRoleType>';
exports.HAS_BIND_URI = '<http://research.ibm.com/ontologies/graph#hasBind>';
exports.HAS_PARENT_URI = '<http://research.ibm.com/ontologies/graph#hasParent>';
exports.ISA_URI = '<http://research.ibm.com/ontologies/graph#isa>';
exports.REFERENCES_URI = '<http://research.ibm.com/ontologies/graph#references>';
exports.REFERENCED_BY_URI = '<http://research.ibm.com/ontologies/graph#referencedBy>';
exports.USES_CONNECTOR_URI = '<http://research.ibm.com/ontologies/graph#usesConnector>';
exports.HAS_BLANK_ID_URI = '<http://research.ibm.com/ontologies/graph#hasBlankId>';
exports.HAS_ANCHOR_URI = '<http://research.ibm.com/ontologies/graph#hasAnchor>';
exports.ANCHOR_KEY_URI = '<http://research.ibm.com/ontologies/graph#anchorKey>';
exports.ANCHOR_TYPE_URI = '<http://research.ibm.com/ontologies/graph#anchorType>';
// List
exports.LIST_ENTRY_URI = '<http://research.ibm.com/ontologies/graph#listCurrent>';
exports.LIST_NEXT_URI = '<http://research.ibm.com/ontologies/graph#listNext>';
exports.DATA_LIST_URI = '<http://research.ibm.com/ontologies/data#list>';
exports.DATA_LITERAL_URI = '<http://research.ibm.com/ontologies/data#Literal>';