@twin.org/standards-foaf 0.0.3-next.5 → 0.0.3-next.50

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 (71) hide show
  1. package/dist/es/dataTypes/foafDataTypes.js +36 -44
  2. package/dist/es/dataTypes/foafDataTypes.js.map +1 -1
  3. package/dist/es/index.js +7 -7
  4. package/dist/es/index.js.map +1 -1
  5. package/dist/es/models/IFoafAgent.js +2 -0
  6. package/dist/es/models/IFoafAgent.js.map +1 -0
  7. package/dist/es/models/IFoafBaseObject.js +2 -0
  8. package/dist/es/models/IFoafBaseObject.js.map +1 -0
  9. package/dist/es/models/IFoafDocument.js +2 -0
  10. package/dist/es/models/IFoafDocument.js.map +1 -0
  11. package/dist/es/models/IFoafGroup.js +2 -0
  12. package/dist/es/models/IFoafGroup.js.map +1 -0
  13. package/dist/es/models/IFoafImage.js +2 -0
  14. package/dist/es/models/IFoafImage.js.map +1 -0
  15. package/dist/es/models/IFoafOrganization.js +2 -0
  16. package/dist/es/models/IFoafOrganization.js.map +1 -0
  17. package/dist/es/models/IFoafPerson.js +2 -0
  18. package/dist/es/models/IFoafPerson.js.map +1 -0
  19. package/dist/es/models/foafContextType.js.map +1 -1
  20. package/dist/es/models/foafContexts.js +12 -6
  21. package/dist/es/models/foafContexts.js.map +1 -1
  22. package/dist/es/schemas/{Group.json → FoafAgent.json} +12 -99
  23. package/dist/es/schemas/{Document.json → FoafDocument.json} +12 -84
  24. package/dist/es/schemas/{Agent.json → FoafGroup.json} +27 -84
  25. package/dist/es/schemas/{Image.json → FoafImage.json} +10 -82
  26. package/dist/es/schemas/{Organization.json → FoafOrganization.json} +12 -84
  27. package/dist/es/schemas/{Person.json → FoafPerson.json} +15 -87
  28. package/dist/types/index.d.ts +7 -7
  29. package/dist/types/models/{IAgent.d.ts → IFoafAgent.d.ts} +12 -7
  30. package/dist/types/models/{IBaseObject.d.ts → IFoafBaseObject.d.ts} +7 -4
  31. package/dist/types/models/{IDocument.d.ts → IFoafDocument.d.ts} +8 -3
  32. package/dist/types/models/IFoafGroup.d.ts +29 -0
  33. package/dist/types/models/{IImage.d.ts → IFoafImage.d.ts} +9 -4
  34. package/dist/types/models/IFoafOrganization.d.ts +23 -0
  35. package/dist/types/models/{IPerson.d.ts → IFoafPerson.d.ts} +11 -5
  36. package/dist/types/models/foafContextType.d.ts +1 -1
  37. package/dist/types/models/foafContexts.d.ts +12 -6
  38. package/docs/changelog.md +323 -0
  39. package/docs/reference/index.md +13 -7
  40. package/docs/reference/interfaces/{IAgent.md → IFoafAgent.md} +27 -23
  41. package/docs/reference/interfaces/{IBaseObject.md → IFoafBaseObject.md} +10 -14
  42. package/docs/reference/interfaces/{IDocument.md → IFoafDocument.md} +21 -17
  43. package/docs/reference/interfaces/{IGroup.md → IFoafGroup.md} +32 -24
  44. package/docs/reference/interfaces/{IImage.md → IFoafImage.md} +25 -17
  45. package/docs/reference/interfaces/{IOrganization.md → IFoafOrganization.md} +31 -23
  46. package/docs/reference/interfaces/{IPerson.md → IFoafPerson.md} +33 -25
  47. package/docs/reference/type-aliases/FoafContextType.md +1 -1
  48. package/docs/reference/type-aliases/IFoafAgentWithAliases.md +12 -0
  49. package/docs/reference/type-aliases/IFoafDocumentWithAliases.md +12 -0
  50. package/docs/reference/type-aliases/IFoafGroupWithAliases.md +12 -0
  51. package/docs/reference/type-aliases/IFoafImageWithAliases.md +12 -0
  52. package/docs/reference/type-aliases/IFoafOrganizationWithAliases.md +12 -0
  53. package/docs/reference/type-aliases/IFoafPersonWithAliases.md +12 -0
  54. package/docs/reference/variables/FoafContexts.md +17 -9
  55. package/package.json +1 -1
  56. package/dist/es/models/IAgent.js +0 -2
  57. package/dist/es/models/IAgent.js.map +0 -1
  58. package/dist/es/models/IBaseObject.js +0 -2
  59. package/dist/es/models/IBaseObject.js.map +0 -1
  60. package/dist/es/models/IDocument.js +0 -2
  61. package/dist/es/models/IDocument.js.map +0 -1
  62. package/dist/es/models/IGroup.js +0 -2
  63. package/dist/es/models/IGroup.js.map +0 -1
  64. package/dist/es/models/IImage.js +0 -2
  65. package/dist/es/models/IImage.js.map +0 -1
  66. package/dist/es/models/IOrganization.js +0 -2
  67. package/dist/es/models/IOrganization.js.map +0 -1
  68. package/dist/es/models/IPerson.js +0 -2
  69. package/dist/es/models/IPerson.js.map +0 -1
  70. package/dist/types/models/IGroup.d.ts +0 -23
  71. package/dist/types/models/IOrganization.d.ts +0 -17
@@ -1,4 +1,4 @@
1
- # Interface: IAgent
1
+ # Interface: IFoafAgent
2
2
 
3
3
  A FOAF Agent.
4
4
 
@@ -8,17 +8,13 @@ http://xmlns.com/foaf/0.1/
8
8
 
9
9
  ## Extends
10
10
 
11
- - [`IBaseObject`](IBaseObject.md)
11
+ - [`IFoafBaseObject`](IFoafBaseObject.md)
12
12
 
13
13
  ## Extended by
14
14
 
15
- - [`IGroup`](IGroup.md)
16
- - [`IOrganization`](IOrganization.md)
17
- - [`IPerson`](IPerson.md)
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`
15
+ - [`IFoafGroup`](IFoafGroup.md)
16
+ - [`IFoafOrganization`](IFoafOrganization.md)
17
+ - [`IFoafPerson`](IFoafPerson.md)
22
18
 
23
19
  ## Properties
24
20
 
@@ -30,7 +26,7 @@ The LD Context.
30
26
 
31
27
  #### Overrides
32
28
 
33
- [`IBaseObject`](IBaseObject.md).[`@context`](IBaseObject.md#context)
29
+ [`IFoafBaseObject`](IFoafBaseObject.md).[`@context`](IFoafBaseObject.md#context)
34
30
 
35
31
  ***
36
32
 
@@ -40,10 +36,6 @@ The LD Context.
40
36
 
41
37
  Type.
42
38
 
43
- #### Overrides
44
-
45
- `IBaseObject.@type`
46
-
47
39
  ***
48
40
 
49
41
  ### age?
@@ -72,7 +64,7 @@ http://xmlns.com/foaf/spec/#term_made
72
64
 
73
65
  ### weblog?
74
66
 
75
- > `optional` **weblog**: [`IDocument`](IDocument.md)
67
+ > `optional` **weblog**: [`IFoafDocument`](IFoafDocument.md)
76
68
 
77
69
  A weblog of some thing (whether person, group, company etc.).
78
70
 
@@ -84,7 +76,7 @@ http://xmlns.com/foaf/spec/#term_weblog
84
76
 
85
77
  ### openid?
86
78
 
87
- > `optional` **openid**: [`IDocument`](IDocument.md)
79
+ > `optional` **openid**: [`IFoafDocument`](IFoafDocument.md)
88
80
 
89
81
  An OpenID for an agent.
90
82
 
@@ -96,7 +88,7 @@ http://xmlns.com/foaf/spec/#term_openid
96
88
 
97
89
  ### interest?
98
90
 
99
- > `optional` **interest**: [`IDocument`](IDocument.md)
91
+ > `optional` **interest**: [`IFoafDocument`](IFoafDocument.md)
100
92
 
101
93
  A page about a topic of interest to this person.
102
94
 
@@ -118,6 +110,18 @@ http://xmlns.com/foaf/spec/#term_topic_interest
118
110
 
119
111
  ***
120
112
 
113
+ ### @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
+
121
125
  ### name?
122
126
 
123
127
  > `optional` **name**: `string`
@@ -130,7 +134,7 @@ http://xmlns.com/foaf/spec/#term_name
130
134
 
131
135
  #### Inherited from
132
136
 
133
- [`IBaseObject`](IBaseObject.md).[`name`](IBaseObject.md#name)
137
+ [`IFoafBaseObject`](IFoafBaseObject.md).[`name`](IFoafBaseObject.md#name)
134
138
 
135
139
  ***
136
140
 
@@ -146,7 +150,7 @@ http://xmlns.com/foaf/spec/#term_title
146
150
 
147
151
  #### Inherited from
148
152
 
149
- [`IBaseObject`](IBaseObject.md).[`title`](IBaseObject.md#title)
153
+ [`IFoafBaseObject`](IFoafBaseObject.md).[`title`](IFoafBaseObject.md#title)
150
154
 
151
155
  ***
152
156
 
@@ -162,7 +166,7 @@ http://xmlns.com/foaf/spec/#term_mbox
162
166
 
163
167
  #### Inherited from
164
168
 
165
- [`IBaseObject`](IBaseObject.md).[`mbox`](IBaseObject.md#mbox)
169
+ [`IFoafBaseObject`](IFoafBaseObject.md).[`mbox`](IFoafBaseObject.md#mbox)
166
170
 
167
171
  ***
168
172
 
@@ -178,13 +182,13 @@ http://xmlns.com/foaf/spec/#term_homepage
178
182
 
179
183
  #### Inherited from
180
184
 
181
- [`IBaseObject`](IBaseObject.md).[`homepage`](IBaseObject.md#homepage)
185
+ [`IFoafBaseObject`](IFoafBaseObject.md).[`homepage`](IFoafBaseObject.md#homepage)
182
186
 
183
187
  ***
184
188
 
185
189
  ### depiction?
186
190
 
187
- > `optional` **depiction**: [`IImage`](IImage.md)
191
+ > `optional` **depiction**: [`IFoafImage`](IFoafImage.md)
188
192
 
189
193
  A depiction of some thing.
190
194
 
@@ -194,4 +198,4 @@ http://xmlns.com/foaf/spec/#term_depiction
194
198
 
195
199
  #### Inherited from
196
200
 
197
- [`IBaseObject`](IBaseObject.md).[`depiction`](IBaseObject.md#depiction)
201
+ [`IFoafBaseObject`](IFoafBaseObject.md).[`depiction`](IFoafBaseObject.md#depiction)
@@ -1,4 +1,4 @@
1
- # Interface: IBaseObject
1
+ # Interface: IFoafBaseObject
2
2
 
3
3
  Core FOAF Properties
4
4
 
@@ -6,18 +6,10 @@ 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
- - [`IAgent`](IAgent.md)
16
- - [`IDocument`](IDocument.md)
17
-
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`
11
+ - [`IFoafAgent`](IFoafAgent.md)
12
+ - [`IFoafDocument`](IFoafDocument.md)
21
13
 
22
14
  ## Properties
23
15
 
@@ -27,9 +19,13 @@ http://xmlns.com/foaf/0.1/
27
19
 
28
20
  The LD Context.
29
21
 
30
- #### Overrides
22
+ ***
23
+
24
+ ### @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
 
@@ -83,7 +79,7 @@ http://xmlns.com/foaf/spec/#term_homepage
83
79
 
84
80
  ### depiction?
85
81
 
86
- > `optional` **depiction**: [`IImage`](IImage.md)
82
+ > `optional` **depiction**: [`IFoafImage`](IFoafImage.md)
87
83
 
88
84
  A depiction of some thing.
89
85
 
@@ -1,4 +1,4 @@
1
- # Interface: IDocument
1
+ # Interface: IFoafDocument
2
2
 
3
3
  A FOAF Document
4
4
 
@@ -8,17 +8,25 @@ http://xmlns.com/foaf/0.1/
8
8
 
9
9
  ## Extends
10
10
 
11
- - [`IBaseObject`](IBaseObject.md)
11
+ - [`IFoafBaseObject`](IFoafBaseObject.md)
12
12
 
13
13
  ## Extended by
14
14
 
15
- - [`IImage`](IImage.md)
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?
20
20
 
21
- ## Properties
21
+ > `optional` **@id**: `string`
22
+
23
+ The unique identifier for the FOAF object.
24
+
25
+ #### Inherited from
26
+
27
+ [`IFoafBaseObject`](IFoafBaseObject.md).[`@id`](IFoafBaseObject.md#id)
28
+
29
+ ***
22
30
 
23
31
  ### name?
24
32
 
@@ -32,7 +40,7 @@ http://xmlns.com/foaf/spec/#term_name
32
40
 
33
41
  #### Inherited from
34
42
 
35
- [`IBaseObject`](IBaseObject.md).[`name`](IBaseObject.md#name)
43
+ [`IFoafBaseObject`](IFoafBaseObject.md).[`name`](IFoafBaseObject.md#name)
36
44
 
37
45
  ***
38
46
 
@@ -48,7 +56,7 @@ http://xmlns.com/foaf/spec/#term_title
48
56
 
49
57
  #### Inherited from
50
58
 
51
- [`IBaseObject`](IBaseObject.md).[`title`](IBaseObject.md#title)
59
+ [`IFoafBaseObject`](IFoafBaseObject.md).[`title`](IFoafBaseObject.md#title)
52
60
 
53
61
  ***
54
62
 
@@ -64,7 +72,7 @@ http://xmlns.com/foaf/spec/#term_mbox
64
72
 
65
73
  #### Inherited from
66
74
 
67
- [`IBaseObject`](IBaseObject.md).[`mbox`](IBaseObject.md#mbox)
75
+ [`IFoafBaseObject`](IFoafBaseObject.md).[`mbox`](IFoafBaseObject.md#mbox)
68
76
 
69
77
  ***
70
78
 
@@ -80,13 +88,13 @@ http://xmlns.com/foaf/spec/#term_homepage
80
88
 
81
89
  #### Inherited from
82
90
 
83
- [`IBaseObject`](IBaseObject.md).[`homepage`](IBaseObject.md#homepage)
91
+ [`IFoafBaseObject`](IFoafBaseObject.md).[`homepage`](IFoafBaseObject.md#homepage)
84
92
 
85
93
  ***
86
94
 
87
95
  ### depiction?
88
96
 
89
- > `optional` **depiction**: [`IImage`](IImage.md)
97
+ > `optional` **depiction**: [`IFoafImage`](IFoafImage.md)
90
98
 
91
99
  A depiction of some thing.
92
100
 
@@ -96,7 +104,7 @@ http://xmlns.com/foaf/spec/#term_depiction
96
104
 
97
105
  #### Inherited from
98
106
 
99
- [`IBaseObject`](IBaseObject.md).[`depiction`](IBaseObject.md#depiction)
107
+ [`IFoafBaseObject`](IFoafBaseObject.md).[`depiction`](IFoafBaseObject.md#depiction)
100
108
 
101
109
  ***
102
110
 
@@ -108,7 +116,7 @@ The LD Context.
108
116
 
109
117
  #### Overrides
110
118
 
111
- [`IBaseObject`](IBaseObject.md).[`@context`](IBaseObject.md#context)
119
+ [`IFoafBaseObject`](IFoafBaseObject.md).[`@context`](IFoafBaseObject.md#context)
112
120
 
113
121
  ***
114
122
 
@@ -118,10 +126,6 @@ The LD Context.
118
126
 
119
127
  Type.
120
128
 
121
- #### Overrides
122
-
123
- `IBaseObject.@type`
124
-
125
129
  ***
126
130
 
127
131
  ### topic?
@@ -1,4 +1,4 @@
1
- # Interface: IGroup
1
+ # Interface: IFoafGroup
2
2
 
3
3
  A FOAF Group.
4
4
 
@@ -8,11 +8,7 @@ http://xmlns.com/foaf/0.1/
8
8
 
9
9
  ## Extends
10
10
 
11
- - [`IAgent`](IAgent.md)
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`
11
+ - [`IFoafAgent`](IFoafAgent.md)
16
12
 
17
13
  ## Properties
18
14
 
@@ -28,7 +24,7 @@ http://xmlns.com/foaf/spec/#term_age
28
24
 
29
25
  #### Inherited from
30
26
 
31
- [`IAgent`](IAgent.md).[`age`](IAgent.md#age)
27
+ [`IFoafAgent`](IFoafAgent.md).[`age`](IFoafAgent.md#age)
32
28
 
33
29
  ***
34
30
 
@@ -44,13 +40,13 @@ http://xmlns.com/foaf/spec/#term_made
44
40
 
45
41
  #### Inherited from
46
42
 
47
- [`IAgent`](IAgent.md).[`made`](IAgent.md#made)
43
+ [`IFoafAgent`](IFoafAgent.md).[`made`](IFoafAgent.md#made)
48
44
 
49
45
  ***
50
46
 
51
47
  ### weblog?
52
48
 
53
- > `optional` **weblog**: [`IDocument`](IDocument.md)
49
+ > `optional` **weblog**: [`IFoafDocument`](IFoafDocument.md)
54
50
 
55
51
  A weblog of some thing (whether person, group, company etc.).
56
52
 
@@ -60,13 +56,13 @@ http://xmlns.com/foaf/spec/#term_weblog
60
56
 
61
57
  #### Inherited from
62
58
 
63
- [`IAgent`](IAgent.md).[`weblog`](IAgent.md#weblog)
59
+ [`IFoafAgent`](IFoafAgent.md).[`weblog`](IFoafAgent.md#weblog)
64
60
 
65
61
  ***
66
62
 
67
63
  ### openid?
68
64
 
69
- > `optional` **openid**: [`IDocument`](IDocument.md)
65
+ > `optional` **openid**: [`IFoafDocument`](IFoafDocument.md)
70
66
 
71
67
  An OpenID for an agent.
72
68
 
@@ -76,13 +72,13 @@ http://xmlns.com/foaf/spec/#term_openid
76
72
 
77
73
  #### Inherited from
78
74
 
79
- [`IAgent`](IAgent.md).[`openid`](IAgent.md#openid)
75
+ [`IFoafAgent`](IFoafAgent.md).[`openid`](IFoafAgent.md#openid)
80
76
 
81
77
  ***
82
78
 
83
79
  ### interest?
84
80
 
85
- > `optional` **interest**: [`IDocument`](IDocument.md)
81
+ > `optional` **interest**: [`IFoafDocument`](IFoafDocument.md)
86
82
 
87
83
  A page about a topic of interest to this person.
88
84
 
@@ -92,7 +88,7 @@ http://xmlns.com/foaf/spec/#term_interest
92
88
 
93
89
  #### Inherited from
94
90
 
95
- [`IAgent`](IAgent.md).[`interest`](IAgent.md#interest)
91
+ [`IFoafAgent`](IFoafAgent.md).[`interest`](IFoafAgent.md#interest)
96
92
 
97
93
  ***
98
94
 
@@ -108,7 +104,19 @@ http://xmlns.com/foaf/spec/#term_topic_interest
108
104
 
109
105
  #### Inherited from
110
106
 
111
- [`IAgent`](IAgent.md).[`topic_interest`](IAgent.md#topic_interest)
107
+ [`IFoafAgent`](IFoafAgent.md).[`topic_interest`](IFoafAgent.md#topic_interest)
108
+
109
+ ***
110
+
111
+ ### @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)
112
120
 
113
121
  ***
114
122
 
@@ -124,7 +132,7 @@ http://xmlns.com/foaf/spec/#term_name
124
132
 
125
133
  #### Inherited from
126
134
 
127
- [`IAgent`](IAgent.md).[`name`](IAgent.md#name)
135
+ [`IFoafAgent`](IFoafAgent.md).[`name`](IFoafAgent.md#name)
128
136
 
129
137
  ***
130
138
 
@@ -140,7 +148,7 @@ http://xmlns.com/foaf/spec/#term_title
140
148
 
141
149
  #### Inherited from
142
150
 
143
- [`IAgent`](IAgent.md).[`title`](IAgent.md#title)
151
+ [`IFoafAgent`](IFoafAgent.md).[`title`](IFoafAgent.md#title)
144
152
 
145
153
  ***
146
154
 
@@ -156,7 +164,7 @@ http://xmlns.com/foaf/spec/#term_mbox
156
164
 
157
165
  #### Inherited from
158
166
 
159
- [`IAgent`](IAgent.md).[`mbox`](IAgent.md#mbox)
167
+ [`IFoafAgent`](IFoafAgent.md).[`mbox`](IFoafAgent.md#mbox)
160
168
 
161
169
  ***
162
170
 
@@ -172,13 +180,13 @@ http://xmlns.com/foaf/spec/#term_homepage
172
180
 
173
181
  #### Inherited from
174
182
 
175
- [`IAgent`](IAgent.md).[`homepage`](IAgent.md#homepage)
183
+ [`IFoafAgent`](IFoafAgent.md).[`homepage`](IFoafAgent.md#homepage)
176
184
 
177
185
  ***
178
186
 
179
187
  ### depiction?
180
188
 
181
- > `optional` **depiction**: [`IImage`](IImage.md)
189
+ > `optional` **depiction**: [`IFoafImage`](IFoafImage.md)
182
190
 
183
191
  A depiction of some thing.
184
192
 
@@ -188,7 +196,7 @@ http://xmlns.com/foaf/spec/#term_depiction
188
196
 
189
197
  #### Inherited from
190
198
 
191
- [`IAgent`](IAgent.md).[`depiction`](IAgent.md#depiction)
199
+ [`IFoafAgent`](IFoafAgent.md).[`depiction`](IFoafAgent.md#depiction)
192
200
 
193
201
  ***
194
202
 
@@ -200,7 +208,7 @@ The LD Context.
200
208
 
201
209
  #### Overrides
202
210
 
203
- [`IAgent`](IAgent.md).[`@context`](IAgent.md#context)
211
+ [`IFoafAgent`](IFoafAgent.md).[`@context`](IFoafAgent.md#context)
204
212
 
205
213
  ***
206
214
 
@@ -212,13 +220,13 @@ Type.
212
220
 
213
221
  #### Overrides
214
222
 
215
- [`IAgent`](IAgent.md).[`@type`](IAgent.md#type)
223
+ [`IFoafAgent`](IFoafAgent.md).[`@type`](IFoafAgent.md#type)
216
224
 
217
225
  ***
218
226
 
219
227
  ### member?
220
228
 
221
- > `optional` **member**: `ObjectOrArray`\<[`IAgent`](IAgent.md)\>
229
+ > `optional` **member**: `ObjectOrArray`\<[`IFoafAgent`](IFoafAgent.md)\>
222
230
 
223
231
  Indicates a member of a Group
224
232
 
@@ -1,4 +1,4 @@
1
- # Interface: IImage
1
+ # Interface: IFoafImage
2
2
 
3
3
  A FOAF image.
4
4
 
@@ -8,13 +8,21 @@ http://xmlns.com/foaf/0.1/
8
8
 
9
9
  ## Extends
10
10
 
11
- - [`IDocument`](IDocument.md)
11
+ - [`IFoafDocument`](IFoafDocument.md)
12
12
 
13
- ## Indexable
13
+ ## Properties
14
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`
15
+ ### @id?
16
16
 
17
- ## Properties
17
+ > `optional` **@id**: `string`
18
+
19
+ The unique identifier for the FOAF object.
20
+
21
+ #### Inherited from
22
+
23
+ [`IFoafDocument`](IFoafDocument.md).[`@id`](IFoafDocument.md#id)
24
+
25
+ ***
18
26
 
19
27
  ### name?
20
28
 
@@ -28,7 +36,7 @@ http://xmlns.com/foaf/spec/#term_name
28
36
 
29
37
  #### Inherited from
30
38
 
31
- [`IDocument`](IDocument.md).[`name`](IDocument.md#name)
39
+ [`IFoafDocument`](IFoafDocument.md).[`name`](IFoafDocument.md#name)
32
40
 
33
41
  ***
34
42
 
@@ -44,7 +52,7 @@ http://xmlns.com/foaf/spec/#term_title
44
52
 
45
53
  #### Inherited from
46
54
 
47
- [`IDocument`](IDocument.md).[`title`](IDocument.md#title)
55
+ [`IFoafDocument`](IFoafDocument.md).[`title`](IFoafDocument.md#title)
48
56
 
49
57
  ***
50
58
 
@@ -60,7 +68,7 @@ http://xmlns.com/foaf/spec/#term_mbox
60
68
 
61
69
  #### Inherited from
62
70
 
63
- [`IDocument`](IDocument.md).[`mbox`](IDocument.md#mbox)
71
+ [`IFoafDocument`](IFoafDocument.md).[`mbox`](IFoafDocument.md#mbox)
64
72
 
65
73
  ***
66
74
 
@@ -76,13 +84,13 @@ http://xmlns.com/foaf/spec/#term_homepage
76
84
 
77
85
  #### Inherited from
78
86
 
79
- [`IDocument`](IDocument.md).[`homepage`](IDocument.md#homepage)
87
+ [`IFoafDocument`](IFoafDocument.md).[`homepage`](IFoafDocument.md#homepage)
80
88
 
81
89
  ***
82
90
 
83
91
  ### depiction?
84
92
 
85
- > `optional` **depiction**: `IImage`
93
+ > `optional` **depiction**: `IFoafImage`
86
94
 
87
95
  A depiction of some thing.
88
96
 
@@ -92,7 +100,7 @@ http://xmlns.com/foaf/spec/#term_depiction
92
100
 
93
101
  #### Inherited from
94
102
 
95
- [`IDocument`](IDocument.md).[`depiction`](IDocument.md#depiction)
103
+ [`IFoafDocument`](IFoafDocument.md).[`depiction`](IFoafDocument.md#depiction)
96
104
 
97
105
  ***
98
106
 
@@ -108,7 +116,7 @@ http://xmlns.com/foaf/spec/#term_topic
108
116
 
109
117
  #### Inherited from
110
118
 
111
- [`IDocument`](IDocument.md).[`topic`](IDocument.md#topic)
119
+ [`IFoafDocument`](IFoafDocument.md).[`topic`](IFoafDocument.md#topic)
112
120
 
113
121
  ***
114
122
 
@@ -124,7 +132,7 @@ http://xmlns.com/foaf/spec/#term_primaryTopic
124
132
 
125
133
  #### Inherited from
126
134
 
127
- [`IDocument`](IDocument.md).[`primaryTopic`](IDocument.md#primarytopic)
135
+ [`IFoafDocument`](IFoafDocument.md).[`primaryTopic`](IFoafDocument.md#primarytopic)
128
136
 
129
137
  ***
130
138
 
@@ -140,7 +148,7 @@ http://xmlns.com/foaf/spec/#term_sha1sum
140
148
 
141
149
  #### Inherited from
142
150
 
143
- [`IDocument`](IDocument.md).[`sha1`](IDocument.md#sha1)
151
+ [`IFoafDocument`](IFoafDocument.md).[`sha1`](IFoafDocument.md#sha1)
144
152
 
145
153
  ***
146
154
 
@@ -152,7 +160,7 @@ The LD Context.
152
160
 
153
161
  #### Overrides
154
162
 
155
- [`IDocument`](IDocument.md).[`@context`](IDocument.md#context)
163
+ [`IFoafDocument`](IFoafDocument.md).[`@context`](IFoafDocument.md#context)
156
164
 
157
165
  ***
158
166
 
@@ -164,7 +172,7 @@ Type.
164
172
 
165
173
  #### Overrides
166
174
 
167
- [`IDocument`](IDocument.md).[`@type`](IDocument.md#type)
175
+ [`IFoafDocument`](IFoafDocument.md).[`@type`](IFoafDocument.md#type)
168
176
 
169
177
  ***
170
178
 
@@ -182,7 +190,7 @@ http://xmlns.com/foaf/spec/#term_depicts
182
190
 
183
191
  ### thumbnail?
184
192
 
185
- > `optional` **thumbnail**: `IImage`
193
+ > `optional` **thumbnail**: `IFoafImage`
186
194
 
187
195
  A derived thumbnail image.
188
196