@twin.org/standards-foaf 0.0.3-next.9 → 0.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (33) hide show
  1. package/README.md +1 -1
  2. package/dist/es/dataTypes/foafDataTypes.js +35 -38
  3. package/dist/es/dataTypes/foafDataTypes.js.map +1 -1
  4. package/dist/es/models/IFoafBaseObject.js.map +1 -1
  5. package/dist/es/models/IFoafImage.js.map +1 -1
  6. package/dist/es/models/foafContextType.js.map +1 -1
  7. package/dist/es/models/foafContexts.js +12 -6
  8. package/dist/es/models/foafContexts.js.map +1 -1
  9. package/dist/es/schemas/FoafAgent.json +18 -119
  10. package/dist/es/schemas/FoafContextType.json +30 -0
  11. package/dist/es/schemas/FoafDocument.json +13 -127
  12. package/dist/es/schemas/FoafGroup.json +10 -162
  13. package/dist/es/schemas/FoafImage.json +8 -148
  14. package/dist/es/schemas/FoafOrganization.json +8 -160
  15. package/dist/es/schemas/FoafPerson.json +10 -162
  16. package/dist/types/models/IFoafBaseObject.d.ts +5 -2
  17. package/dist/types/models/IFoafImage.d.ts +0 -1
  18. package/dist/types/models/foafContextType.d.ts +2 -1
  19. package/dist/types/models/foafContexts.d.ts +12 -6
  20. package/docs/changelog.md +466 -9
  21. package/docs/examples.md +21 -1
  22. package/docs/reference/classes/FoafDataTypes.md +2 -2
  23. package/docs/reference/interfaces/IFoafAgent.md +37 -33
  24. package/docs/reference/interfaces/IFoafBaseObject.md +18 -22
  25. package/docs/reference/interfaces/IFoafDocument.md +30 -26
  26. package/docs/reference/interfaces/IFoafGroup.md +39 -31
  27. package/docs/reference/interfaces/IFoafImage.md +34 -26
  28. package/docs/reference/interfaces/IFoafOrganization.md +37 -29
  29. package/docs/reference/interfaces/IFoafPerson.md +47 -39
  30. package/docs/reference/type-aliases/FoafContextType.md +1 -1
  31. package/docs/reference/variables/FoafContexts.md +17 -9
  32. package/docs/reference/variables/FoafTypes.md +6 -6
  33. package/package.json +7 -7
@@ -16,15 +16,11 @@ http://xmlns.com/foaf/0.1/
16
16
  - [`IFoafOrganization`](IFoafOrganization.md)
17
17
  - [`IFoafPerson`](IFoafPerson.md)
18
18
 
19
- ## Indexable
20
-
21
- \[`key`: `string`\]: `string` \| `number` \| `boolean` \| `string`[] \| `IJsonLdContextDefinition` \| `IJsonLdNodeObject` \| `IJsonLdGraphObject` \| `object` & `object` \| `object` & `object` \| `object` & `object` \| `IJsonLdListObject` \| `IJsonLdSetObject` \| `IJsonLdNodePrimitive`[] \| `IJsonLdLanguageMap` \| `IJsonLdIndexMap` \| `IJsonLdNodeObject`[] \| `IJsonLdIdMap` \| `IJsonLdTypeMap` \| `IJsonLdContextDefinitionElement`[] \| `IJsonLdJsonObject` \| `IJsonLdJsonObject`[] \| \{\[`key`: `string`\]: `string`; \} \| `null` \| `undefined`
22
-
23
19
  ## Properties
24
20
 
25
- ### @context?
21
+ ### @context? {#context}
26
22
 
27
- > `optional` **@context**: [`FoafContextType`](../type-aliases/FoafContextType.md)
23
+ > `optional` **@context?**: [`FoafContextType`](../type-aliases/FoafContextType.md)
28
24
 
29
25
  The LD Context.
30
26
 
@@ -34,21 +30,17 @@ The LD Context.
34
30
 
35
31
  ***
36
32
 
37
- ### @type
33
+ ### @type {#type}
38
34
 
39
35
  > **@type**: `string`
40
36
 
41
37
  Type.
42
38
 
43
- #### Overrides
44
-
45
- `IFoafBaseObject.@type`
46
-
47
39
  ***
48
40
 
49
- ### age?
41
+ ### age? {#age}
50
42
 
51
- > `optional` **age**: `number`
43
+ > `optional` **age?**: `number`
52
44
 
53
45
  The age in years of some agent.
54
46
 
@@ -58,9 +50,9 @@ http://xmlns.com/foaf/spec/#term_age
58
50
 
59
51
  ***
60
52
 
61
- ### made?
53
+ ### made? {#made}
62
54
 
63
- > `optional` **made**: `ObjectOrArray`\<`IJsonLdNodeObject`\>
55
+ > `optional` **made?**: `ObjectOrArray`\<`IJsonLdNodeObject`\>
64
56
 
65
57
  Something that was made by this agent.
66
58
 
@@ -70,9 +62,9 @@ http://xmlns.com/foaf/spec/#term_made
70
62
 
71
63
  ***
72
64
 
73
- ### weblog?
65
+ ### weblog? {#weblog}
74
66
 
75
- > `optional` **weblog**: [`IFoafDocument`](IFoafDocument.md)
67
+ > `optional` **weblog?**: [`IFoafDocument`](IFoafDocument.md)
76
68
 
77
69
  A weblog of some thing (whether person, group, company etc.).
78
70
 
@@ -82,9 +74,9 @@ http://xmlns.com/foaf/spec/#term_weblog
82
74
 
83
75
  ***
84
76
 
85
- ### openid?
77
+ ### openid? {#openid}
86
78
 
87
- > `optional` **openid**: [`IFoafDocument`](IFoafDocument.md)
79
+ > `optional` **openid?**: [`IFoafDocument`](IFoafDocument.md)
88
80
 
89
81
  An OpenID for an agent.
90
82
 
@@ -94,9 +86,9 @@ http://xmlns.com/foaf/spec/#term_openid
94
86
 
95
87
  ***
96
88
 
97
- ### interest?
89
+ ### interest? {#interest}
98
90
 
99
- > `optional` **interest**: [`IFoafDocument`](IFoafDocument.md)
91
+ > `optional` **interest?**: [`IFoafDocument`](IFoafDocument.md)
100
92
 
101
93
  A page about a topic of interest to this person.
102
94
 
@@ -106,9 +98,9 @@ http://xmlns.com/foaf/spec/#term_interest
106
98
 
107
99
  ***
108
100
 
109
- ### topic\_interest?
101
+ ### topic\_interest? {#topic_interest}
110
102
 
111
- > `optional` **topic\_interest**: `IJsonLdNodeObject`
103
+ > `optional` **topic\_interest?**: `IJsonLdNodeObject`
112
104
 
113
105
  A thing of interest to this person.
114
106
 
@@ -118,9 +110,21 @@ http://xmlns.com/foaf/spec/#term_topic_interest
118
110
 
119
111
  ***
120
112
 
121
- ### name?
113
+ ### @id? {#id}
114
+
115
+ > `optional` **@id?**: `string`
116
+
117
+ The unique identifier for the FOAF object.
118
+
119
+ #### Inherited from
120
+
121
+ [`IFoafBaseObject`](IFoafBaseObject.md).[`@id`](IFoafBaseObject.md#id)
122
+
123
+ ***
124
+
125
+ ### name? {#name}
122
126
 
123
- > `optional` **name**: `string`
127
+ > `optional` **name?**: `string`
124
128
 
125
129
  A name for some thing.
126
130
 
@@ -134,9 +138,9 @@ http://xmlns.com/foaf/spec/#term_name
134
138
 
135
139
  ***
136
140
 
137
- ### title?
141
+ ### title? {#title}
138
142
 
139
- > `optional` **title**: `string`
143
+ > `optional` **title?**: `string`
140
144
 
141
145
  Title (Mr, Mrs, Ms, Dr. etc)
142
146
 
@@ -150,9 +154,9 @@ http://xmlns.com/foaf/spec/#term_title
150
154
 
151
155
  ***
152
156
 
153
- ### mbox?
157
+ ### mbox? {#mbox}
154
158
 
155
- > `optional` **mbox**: `string`
159
+ > `optional` **mbox?**: `string`
156
160
 
157
161
  A personal mailbox, ie. an Internet mailbox associated with exactly one owner, the first owner of this mailbox
158
162
 
@@ -166,9 +170,9 @@ http://xmlns.com/foaf/spec/#term_mbox
166
170
 
167
171
  ***
168
172
 
169
- ### homepage?
173
+ ### homepage? {#homepage}
170
174
 
171
- > `optional` **homepage**: `string`
175
+ > `optional` **homepage?**: `string`
172
176
 
173
177
  A homepage for some thing.
174
178
 
@@ -182,9 +186,9 @@ http://xmlns.com/foaf/spec/#term_homepage
182
186
 
183
187
  ***
184
188
 
185
- ### depiction?
189
+ ### depiction? {#depiction}
186
190
 
187
- > `optional` **depiction**: [`IFoafImage`](IFoafImage.md)
191
+ > `optional` **depiction?**: [`IFoafImage`](IFoafImage.md)
188
192
 
189
193
  A depiction of some thing.
190
194
 
@@ -6,36 +6,32 @@ Core FOAF Properties
6
6
 
7
7
  http://xmlns.com/foaf/0.1/
8
8
 
9
- ## Extends
10
-
11
- - `IJsonLdNodeObject`
12
-
13
9
  ## Extended by
14
10
 
15
11
  - [`IFoafAgent`](IFoafAgent.md)
16
12
  - [`IFoafDocument`](IFoafDocument.md)
17
13
 
18
- ## Indexable
19
-
20
- \[`key`: `string`\]: `string` \| `number` \| `boolean` \| `string`[] \| `IJsonLdContextDefinition` \| `IJsonLdNodeObject` \| `IJsonLdGraphObject` \| `object` & `object` \| `object` & `object` \| `object` & `object` \| `IJsonLdListObject` \| `IJsonLdSetObject` \| `IJsonLdNodePrimitive`[] \| `IJsonLdLanguageMap` \| `IJsonLdIndexMap` \| `IJsonLdNodeObject`[] \| `IJsonLdIdMap` \| `IJsonLdTypeMap` \| `IJsonLdContextDefinitionElement`[] \| `IJsonLdJsonObject` \| `IJsonLdJsonObject`[] \| \{\[`key`: `string`\]: `string`; \} \| `null` \| `undefined`
21
-
22
14
  ## Properties
23
15
 
24
- ### @context?
16
+ ### @context? {#context}
25
17
 
26
- > `optional` **@context**: [`FoafContextType`](../type-aliases/FoafContextType.md)
18
+ > `optional` **@context?**: [`FoafContextType`](../type-aliases/FoafContextType.md)
27
19
 
28
20
  The LD Context.
29
21
 
30
- #### Overrides
22
+ ***
23
+
24
+ ### @id? {#id}
25
+
26
+ > `optional` **@id?**: `string`
31
27
 
32
- `IJsonLdNodeObject.@context`
28
+ The unique identifier for the FOAF object.
33
29
 
34
30
  ***
35
31
 
36
- ### name?
32
+ ### name? {#name}
37
33
 
38
- > `optional` **name**: `string`
34
+ > `optional` **name?**: `string`
39
35
 
40
36
  A name for some thing.
41
37
 
@@ -45,9 +41,9 @@ http://xmlns.com/foaf/spec/#term_name
45
41
 
46
42
  ***
47
43
 
48
- ### title?
44
+ ### title? {#title}
49
45
 
50
- > `optional` **title**: `string`
46
+ > `optional` **title?**: `string`
51
47
 
52
48
  Title (Mr, Mrs, Ms, Dr. etc)
53
49
 
@@ -57,9 +53,9 @@ http://xmlns.com/foaf/spec/#term_title
57
53
 
58
54
  ***
59
55
 
60
- ### mbox?
56
+ ### mbox? {#mbox}
61
57
 
62
- > `optional` **mbox**: `string`
58
+ > `optional` **mbox?**: `string`
63
59
 
64
60
  A personal mailbox, ie. an Internet mailbox associated with exactly one owner, the first owner of this mailbox
65
61
 
@@ -69,9 +65,9 @@ http://xmlns.com/foaf/spec/#term_mbox
69
65
 
70
66
  ***
71
67
 
72
- ### homepage?
68
+ ### homepage? {#homepage}
73
69
 
74
- > `optional` **homepage**: `string`
70
+ > `optional` **homepage?**: `string`
75
71
 
76
72
  A homepage for some thing.
77
73
 
@@ -81,9 +77,9 @@ http://xmlns.com/foaf/spec/#term_homepage
81
77
 
82
78
  ***
83
79
 
84
- ### depiction?
80
+ ### depiction? {#depiction}
85
81
 
86
- > `optional` **depiction**: [`IFoafImage`](IFoafImage.md)
82
+ > `optional` **depiction?**: [`IFoafImage`](IFoafImage.md)
87
83
 
88
84
  A depiction of some thing.
89
85
 
@@ -14,15 +14,23 @@ http://xmlns.com/foaf/0.1/
14
14
 
15
15
  - [`IFoafImage`](IFoafImage.md)
16
16
 
17
- ## Indexable
17
+ ## Properties
18
18
 
19
- \[`key`: `string`\]: `string` \| `number` \| `boolean` \| `string`[] \| `IJsonLdContextDefinition` \| `IJsonLdNodeObject` \| `IJsonLdGraphObject` \| `object` & `object` \| `object` & `object` \| `object` & `object` \| `IJsonLdListObject` \| `IJsonLdSetObject` \| `IJsonLdNodePrimitive`[] \| `IJsonLdLanguageMap` \| `IJsonLdIndexMap` \| `IJsonLdNodeObject`[] \| `IJsonLdIdMap` \| `IJsonLdTypeMap` \| `IJsonLdContextDefinitionElement`[] \| `IJsonLdJsonObject` \| `IJsonLdJsonObject`[] \| \{\[`key`: `string`\]: `string`; \} \| `null` \| `undefined`
19
+ ### @id? {#id}
20
20
 
21
- ## Properties
21
+ > `optional` **@id?**: `string`
22
+
23
+ The unique identifier for the FOAF object.
22
24
 
23
- ### name?
25
+ #### Inherited from
26
+
27
+ [`IFoafBaseObject`](IFoafBaseObject.md).[`@id`](IFoafBaseObject.md#id)
24
28
 
25
- > `optional` **name**: `string`
29
+ ***
30
+
31
+ ### name? {#name}
32
+
33
+ > `optional` **name?**: `string`
26
34
 
27
35
  A name for some thing.
28
36
 
@@ -36,9 +44,9 @@ http://xmlns.com/foaf/spec/#term_name
36
44
 
37
45
  ***
38
46
 
39
- ### title?
47
+ ### title? {#title}
40
48
 
41
- > `optional` **title**: `string`
49
+ > `optional` **title?**: `string`
42
50
 
43
51
  Title (Mr, Mrs, Ms, Dr. etc)
44
52
 
@@ -52,9 +60,9 @@ http://xmlns.com/foaf/spec/#term_title
52
60
 
53
61
  ***
54
62
 
55
- ### mbox?
63
+ ### mbox? {#mbox}
56
64
 
57
- > `optional` **mbox**: `string`
65
+ > `optional` **mbox?**: `string`
58
66
 
59
67
  A personal mailbox, ie. an Internet mailbox associated with exactly one owner, the first owner of this mailbox
60
68
 
@@ -68,9 +76,9 @@ http://xmlns.com/foaf/spec/#term_mbox
68
76
 
69
77
  ***
70
78
 
71
- ### homepage?
79
+ ### homepage? {#homepage}
72
80
 
73
- > `optional` **homepage**: `string`
81
+ > `optional` **homepage?**: `string`
74
82
 
75
83
  A homepage for some thing.
76
84
 
@@ -84,9 +92,9 @@ http://xmlns.com/foaf/spec/#term_homepage
84
92
 
85
93
  ***
86
94
 
87
- ### depiction?
95
+ ### depiction? {#depiction}
88
96
 
89
- > `optional` **depiction**: [`IFoafImage`](IFoafImage.md)
97
+ > `optional` **depiction?**: [`IFoafImage`](IFoafImage.md)
90
98
 
91
99
  A depiction of some thing.
92
100
 
@@ -100,9 +108,9 @@ http://xmlns.com/foaf/spec/#term_depiction
100
108
 
101
109
  ***
102
110
 
103
- ### @context?
111
+ ### @context? {#context}
104
112
 
105
- > `optional` **@context**: [`FoafContextType`](../type-aliases/FoafContextType.md)
113
+ > `optional` **@context?**: [`FoafContextType`](../type-aliases/FoafContextType.md)
106
114
 
107
115
  The LD Context.
108
116
 
@@ -112,21 +120,17 @@ The LD Context.
112
120
 
113
121
  ***
114
122
 
115
- ### @type
123
+ ### @type {#type}
116
124
 
117
125
  > **@type**: `"Document"` \| `"Image"`
118
126
 
119
127
  Type.
120
128
 
121
- #### Overrides
122
-
123
- `IFoafBaseObject.@type`
124
-
125
129
  ***
126
130
 
127
- ### topic?
131
+ ### topic? {#topic}
128
132
 
129
- > `optional` **topic**: `string`
133
+ > `optional` **topic?**: `string`
130
134
 
131
135
  A topic of some page or document.
132
136
 
@@ -136,9 +140,9 @@ http://xmlns.com/foaf/spec/#term_topic
136
140
 
137
141
  ***
138
142
 
139
- ### primaryTopic?
143
+ ### primaryTopic? {#primarytopic}
140
144
 
141
- > `optional` **primaryTopic**: `ObjectOrArray`\<`IJsonLdNodeObject`\>
145
+ > `optional` **primaryTopic?**: `ObjectOrArray`\<`IJsonLdNodeObject`\>
142
146
 
143
147
  The primary topic of some page or document.
144
148
 
@@ -148,9 +152,9 @@ http://xmlns.com/foaf/spec/#term_primaryTopic
148
152
 
149
153
  ***
150
154
 
151
- ### sha1?
155
+ ### sha1? {#sha1}
152
156
 
153
- > `optional` **sha1**: `string`
157
+ > `optional` **sha1?**: `string`
154
158
 
155
159
  A sha1sum hash, in hex.
156
160
 
@@ -10,15 +10,11 @@ http://xmlns.com/foaf/0.1/
10
10
 
11
11
  - [`IFoafAgent`](IFoafAgent.md)
12
12
 
13
- ## Indexable
14
-
15
- \[`key`: `string`\]: `string` \| `number` \| `boolean` \| `string`[] \| `IJsonLdContextDefinition` \| `IJsonLdNodeObject` \| `IJsonLdGraphObject` \| `object` & `object` \| `object` & `object` \| `object` & `object` \| `IJsonLdListObject` \| `IJsonLdSetObject` \| `IJsonLdNodePrimitive`[] \| `IJsonLdLanguageMap` \| `IJsonLdIndexMap` \| `IJsonLdNodeObject`[] \| `IJsonLdIdMap` \| `IJsonLdTypeMap` \| `IJsonLdContextDefinitionElement`[] \| `IJsonLdJsonObject` \| `IJsonLdJsonObject`[] \| \{\[`key`: `string`\]: `string`; \} \| `null` \| `undefined`
16
-
17
13
  ## Properties
18
14
 
19
- ### age?
15
+ ### age? {#age}
20
16
 
21
- > `optional` **age**: `number`
17
+ > `optional` **age?**: `number`
22
18
 
23
19
  The age in years of some agent.
24
20
 
@@ -32,9 +28,9 @@ http://xmlns.com/foaf/spec/#term_age
32
28
 
33
29
  ***
34
30
 
35
- ### made?
31
+ ### made? {#made}
36
32
 
37
- > `optional` **made**: `ObjectOrArray`\<`IJsonLdNodeObject`\>
33
+ > `optional` **made?**: `ObjectOrArray`\<`IJsonLdNodeObject`\>
38
34
 
39
35
  Something that was made by this agent.
40
36
 
@@ -48,9 +44,9 @@ http://xmlns.com/foaf/spec/#term_made
48
44
 
49
45
  ***
50
46
 
51
- ### weblog?
47
+ ### weblog? {#weblog}
52
48
 
53
- > `optional` **weblog**: [`IFoafDocument`](IFoafDocument.md)
49
+ > `optional` **weblog?**: [`IFoafDocument`](IFoafDocument.md)
54
50
 
55
51
  A weblog of some thing (whether person, group, company etc.).
56
52
 
@@ -64,9 +60,9 @@ http://xmlns.com/foaf/spec/#term_weblog
64
60
 
65
61
  ***
66
62
 
67
- ### openid?
63
+ ### openid? {#openid}
68
64
 
69
- > `optional` **openid**: [`IFoafDocument`](IFoafDocument.md)
65
+ > `optional` **openid?**: [`IFoafDocument`](IFoafDocument.md)
70
66
 
71
67
  An OpenID for an agent.
72
68
 
@@ -80,9 +76,9 @@ http://xmlns.com/foaf/spec/#term_openid
80
76
 
81
77
  ***
82
78
 
83
- ### interest?
79
+ ### interest? {#interest}
84
80
 
85
- > `optional` **interest**: [`IFoafDocument`](IFoafDocument.md)
81
+ > `optional` **interest?**: [`IFoafDocument`](IFoafDocument.md)
86
82
 
87
83
  A page about a topic of interest to this person.
88
84
 
@@ -96,9 +92,9 @@ http://xmlns.com/foaf/spec/#term_interest
96
92
 
97
93
  ***
98
94
 
99
- ### topic\_interest?
95
+ ### topic\_interest? {#topic_interest}
100
96
 
101
- > `optional` **topic\_interest**: `IJsonLdNodeObject`
97
+ > `optional` **topic\_interest?**: `IJsonLdNodeObject`
102
98
 
103
99
  A thing of interest to this person.
104
100
 
@@ -112,9 +108,21 @@ http://xmlns.com/foaf/spec/#term_topic_interest
112
108
 
113
109
  ***
114
110
 
115
- ### name?
111
+ ### @id? {#id}
112
+
113
+ > `optional` **@id?**: `string`
114
+
115
+ The unique identifier for the FOAF object.
116
+
117
+ #### Inherited from
118
+
119
+ [`IFoafAgent`](IFoafAgent.md).[`@id`](IFoafAgent.md#id)
120
+
121
+ ***
122
+
123
+ ### name? {#name}
116
124
 
117
- > `optional` **name**: `string`
125
+ > `optional` **name?**: `string`
118
126
 
119
127
  A name for some thing.
120
128
 
@@ -128,9 +136,9 @@ http://xmlns.com/foaf/spec/#term_name
128
136
 
129
137
  ***
130
138
 
131
- ### title?
139
+ ### title? {#title}
132
140
 
133
- > `optional` **title**: `string`
141
+ > `optional` **title?**: `string`
134
142
 
135
143
  Title (Mr, Mrs, Ms, Dr. etc)
136
144
 
@@ -144,9 +152,9 @@ http://xmlns.com/foaf/spec/#term_title
144
152
 
145
153
  ***
146
154
 
147
- ### mbox?
155
+ ### mbox? {#mbox}
148
156
 
149
- > `optional` **mbox**: `string`
157
+ > `optional` **mbox?**: `string`
150
158
 
151
159
  A personal mailbox, ie. an Internet mailbox associated with exactly one owner, the first owner of this mailbox
152
160
 
@@ -160,9 +168,9 @@ http://xmlns.com/foaf/spec/#term_mbox
160
168
 
161
169
  ***
162
170
 
163
- ### homepage?
171
+ ### homepage? {#homepage}
164
172
 
165
- > `optional` **homepage**: `string`
173
+ > `optional` **homepage?**: `string`
166
174
 
167
175
  A homepage for some thing.
168
176
 
@@ -176,9 +184,9 @@ http://xmlns.com/foaf/spec/#term_homepage
176
184
 
177
185
  ***
178
186
 
179
- ### depiction?
187
+ ### depiction? {#depiction}
180
188
 
181
- > `optional` **depiction**: [`IFoafImage`](IFoafImage.md)
189
+ > `optional` **depiction?**: [`IFoafImage`](IFoafImage.md)
182
190
 
183
191
  A depiction of some thing.
184
192
 
@@ -192,9 +200,9 @@ http://xmlns.com/foaf/spec/#term_depiction
192
200
 
193
201
  ***
194
202
 
195
- ### @context?
203
+ ### @context? {#context}
196
204
 
197
- > `optional` **@context**: [`FoafContextType`](../type-aliases/FoafContextType.md)
205
+ > `optional` **@context?**: [`FoafContextType`](../type-aliases/FoafContextType.md)
198
206
 
199
207
  The LD Context.
200
208
 
@@ -204,7 +212,7 @@ The LD Context.
204
212
 
205
213
  ***
206
214
 
207
- ### @type
215
+ ### @type {#type}
208
216
 
209
217
  > **@type**: `"Group"`
210
218
 
@@ -216,9 +224,9 @@ Type.
216
224
 
217
225
  ***
218
226
 
219
- ### member?
227
+ ### member? {#member}
220
228
 
221
- > `optional` **member**: `ObjectOrArray`\<[`IFoafAgent`](IFoafAgent.md)\>
229
+ > `optional` **member?**: `ObjectOrArray`\<[`IFoafAgent`](IFoafAgent.md)\>
222
230
 
223
231
  Indicates a member of a Group
224
232