Skip to content

Commit 922c2b4

Browse files
committed
add example files
1 parent e804b9d commit 922c2b4

4 files changed

Lines changed: 10614 additions & 1 deletion

File tree

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,5 @@ dist-ssr
2424
*.sw?
2525

2626
# project configuration
27-
config.yml
27+
config.yml
28+
!examples/config.yml

examples/config.yml

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
# links will be created from these properties
2+
relationProperties:
3+
- "http://schema.org/affiliation"
4+
- "http://schema.org/dataPublished"
5+
- "http://schema.org/dateModified"
6+
- "http://schema.org/provider"
7+
- "http://schema.org/license"
8+
- "http://schema.org/publisher"
9+
- "http://schema.org/author"
10+
- "http://schema.org/creator"
11+
- "http://schema.org/keywords"
12+
13+
# labels will be created from these properties
14+
labelProperties:
15+
- "http://schema.org/name"
16+
- "http://schema.org/text"
17+
- "http://schema.org/comment"
18+
19+
# groups will be created from these properties
20+
groups:
21+
- name: 'Organization'
22+
types: # below types will be in the organization group
23+
- 'http://schema.org/Organization'
24+
properties: # object of below properties will be in the organization group
25+
- 'http://schema.org/affiliation'
26+
- 'http://schema.org/provider'
27+
- 'http://schema.org/publisher'
28+
color: '#008000' # color of the nodes in this group on 3D view
29+
- name: 'Person'
30+
types:
31+
- 'http://schema.org/Person'
32+
properties:
33+
- 'http://schema.org/author'
34+
- 'http://schema.org/creator'
35+
color: '#FF0000'
36+
- name: 'Dataset'
37+
types:
38+
- 'http://schema.org/Dataset'
39+
color: '#0000FF'
40+
- name: 'Software'
41+
types:
42+
- 'http://schema.org/SoftwareSourceCode'
43+
color: '#FFFF00'
44+
- name: 'Document'
45+
types:
46+
- 'http://schema.org/Document'
47+
color: '#FFA500'
48+
- name: 'Article'
49+
types:
50+
- 'http://schema.org/Article'
51+
color: '#4B0082'
52+
- name: 'CreativeWork'
53+
types:
54+
- 'http://schema.org/CreativeWork'
55+
color: '#8A2BE2'
56+
- name: 'Service'
57+
types:
58+
- 'http://schema.org/Service'
59+
color: '#00FFFF'

0 commit comments

Comments
 (0)