@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.
- package/dist/es/dataTypes/foafDataTypes.js +36 -44
- package/dist/es/dataTypes/foafDataTypes.js.map +1 -1
- package/dist/es/index.js +7 -7
- package/dist/es/index.js.map +1 -1
- package/dist/es/models/IFoafAgent.js +2 -0
- package/dist/es/models/IFoafAgent.js.map +1 -0
- package/dist/es/models/IFoafBaseObject.js +2 -0
- package/dist/es/models/IFoafBaseObject.js.map +1 -0
- package/dist/es/models/IFoafDocument.js +2 -0
- package/dist/es/models/IFoafDocument.js.map +1 -0
- package/dist/es/models/IFoafGroup.js +2 -0
- package/dist/es/models/IFoafGroup.js.map +1 -0
- package/dist/es/models/IFoafImage.js +2 -0
- package/dist/es/models/IFoafImage.js.map +1 -0
- package/dist/es/models/IFoafOrganization.js +2 -0
- package/dist/es/models/IFoafOrganization.js.map +1 -0
- package/dist/es/models/IFoafPerson.js +2 -0
- package/dist/es/models/IFoafPerson.js.map +1 -0
- package/dist/es/models/foafContextType.js.map +1 -1
- package/dist/es/models/foafContexts.js +12 -6
- package/dist/es/models/foafContexts.js.map +1 -1
- package/dist/es/schemas/{Group.json → FoafAgent.json} +12 -99
- package/dist/es/schemas/{Document.json → FoafDocument.json} +12 -84
- package/dist/es/schemas/{Agent.json → FoafGroup.json} +27 -84
- package/dist/es/schemas/{Image.json → FoafImage.json} +10 -82
- package/dist/es/schemas/{Organization.json → FoafOrganization.json} +12 -84
- package/dist/es/schemas/{Person.json → FoafPerson.json} +15 -87
- package/dist/types/index.d.ts +7 -7
- package/dist/types/models/{IAgent.d.ts → IFoafAgent.d.ts} +12 -7
- package/dist/types/models/{IBaseObject.d.ts → IFoafBaseObject.d.ts} +7 -4
- package/dist/types/models/{IDocument.d.ts → IFoafDocument.d.ts} +8 -3
- package/dist/types/models/IFoafGroup.d.ts +29 -0
- package/dist/types/models/{IImage.d.ts → IFoafImage.d.ts} +9 -4
- package/dist/types/models/IFoafOrganization.d.ts +23 -0
- package/dist/types/models/{IPerson.d.ts → IFoafPerson.d.ts} +11 -5
- package/dist/types/models/foafContextType.d.ts +1 -1
- package/dist/types/models/foafContexts.d.ts +12 -6
- package/docs/changelog.md +323 -0
- package/docs/reference/index.md +13 -7
- package/docs/reference/interfaces/{IAgent.md → IFoafAgent.md} +27 -23
- package/docs/reference/interfaces/{IBaseObject.md → IFoafBaseObject.md} +10 -14
- package/docs/reference/interfaces/{IDocument.md → IFoafDocument.md} +21 -17
- package/docs/reference/interfaces/{IGroup.md → IFoafGroup.md} +32 -24
- package/docs/reference/interfaces/{IImage.md → IFoafImage.md} +25 -17
- package/docs/reference/interfaces/{IOrganization.md → IFoafOrganization.md} +31 -23
- package/docs/reference/interfaces/{IPerson.md → IFoafPerson.md} +33 -25
- package/docs/reference/type-aliases/FoafContextType.md +1 -1
- package/docs/reference/type-aliases/IFoafAgentWithAliases.md +12 -0
- package/docs/reference/type-aliases/IFoafDocumentWithAliases.md +12 -0
- package/docs/reference/type-aliases/IFoafGroupWithAliases.md +12 -0
- package/docs/reference/type-aliases/IFoafImageWithAliases.md +12 -0
- package/docs/reference/type-aliases/IFoafOrganizationWithAliases.md +12 -0
- package/docs/reference/type-aliases/IFoafPersonWithAliases.md +12 -0
- package/docs/reference/variables/FoafContexts.md +17 -9
- package/package.json +1 -1
- package/dist/es/models/IAgent.js +0 -2
- package/dist/es/models/IAgent.js.map +0 -1
- package/dist/es/models/IBaseObject.js +0 -2
- package/dist/es/models/IBaseObject.js.map +0 -1
- package/dist/es/models/IDocument.js +0 -2
- package/dist/es/models/IDocument.js.map +0 -1
- package/dist/es/models/IGroup.js +0 -2
- package/dist/es/models/IGroup.js.map +0 -1
- package/dist/es/models/IImage.js +0 -2
- package/dist/es/models/IImage.js.map +0 -1
- package/dist/es/models/IOrganization.js +0 -2
- package/dist/es/models/IOrganization.js.map +0 -1
- package/dist/es/models/IPerson.js +0 -2
- package/dist/es/models/IPerson.js.map +0 -1
- package/dist/types/models/IGroup.d.ts +0 -23
- package/dist/types/models/IOrganization.d.ts +0 -17
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Interface:
|
|
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
|
-
- [`
|
|
11
|
+
- [`IFoafBaseObject`](IFoafBaseObject.md)
|
|
12
12
|
|
|
13
13
|
## Extended by
|
|
14
14
|
|
|
15
|
-
- [`
|
|
16
|
-
- [`
|
|
17
|
-
- [`
|
|
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
|
-
[`
|
|
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**: [`
|
|
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**: [`
|
|
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**: [`
|
|
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
|
-
[`
|
|
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
|
-
[`
|
|
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
|
-
[`
|
|
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
|
-
[`
|
|
185
|
+
[`IFoafBaseObject`](IFoafBaseObject.md).[`homepage`](IFoafBaseObject.md#homepage)
|
|
182
186
|
|
|
183
187
|
***
|
|
184
188
|
|
|
185
189
|
### depiction?
|
|
186
190
|
|
|
187
|
-
> `optional` **depiction**: [`
|
|
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
|
-
[`
|
|
201
|
+
[`IFoafBaseObject`](IFoafBaseObject.md).[`depiction`](IFoafBaseObject.md#depiction)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Interface:
|
|
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
|
-
- [`
|
|
16
|
-
- [`
|
|
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
|
-
|
|
22
|
+
***
|
|
23
|
+
|
|
24
|
+
### @id?
|
|
25
|
+
|
|
26
|
+
> `optional` **@id**: `string`
|
|
31
27
|
|
|
32
|
-
|
|
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**: [`
|
|
82
|
+
> `optional` **depiction**: [`IFoafImage`](IFoafImage.md)
|
|
87
83
|
|
|
88
84
|
A depiction of some thing.
|
|
89
85
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Interface:
|
|
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
|
-
- [`
|
|
11
|
+
- [`IFoafBaseObject`](IFoafBaseObject.md)
|
|
12
12
|
|
|
13
13
|
## Extended by
|
|
14
14
|
|
|
15
|
-
- [`
|
|
15
|
+
- [`IFoafImage`](IFoafImage.md)
|
|
16
16
|
|
|
17
|
-
##
|
|
17
|
+
## Properties
|
|
18
18
|
|
|
19
|
-
|
|
19
|
+
### @id?
|
|
20
20
|
|
|
21
|
-
|
|
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
|
-
[`
|
|
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
|
-
[`
|
|
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
|
-
[`
|
|
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
|
-
[`
|
|
91
|
+
[`IFoafBaseObject`](IFoafBaseObject.md).[`homepage`](IFoafBaseObject.md#homepage)
|
|
84
92
|
|
|
85
93
|
***
|
|
86
94
|
|
|
87
95
|
### depiction?
|
|
88
96
|
|
|
89
|
-
> `optional` **depiction**: [`
|
|
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
|
-
[`
|
|
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
|
-
[`
|
|
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:
|
|
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
|
-
- [`
|
|
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
|
-
[`
|
|
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
|
-
[`
|
|
43
|
+
[`IFoafAgent`](IFoafAgent.md).[`made`](IFoafAgent.md#made)
|
|
48
44
|
|
|
49
45
|
***
|
|
50
46
|
|
|
51
47
|
### weblog?
|
|
52
48
|
|
|
53
|
-
> `optional` **weblog**: [`
|
|
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
|
-
[`
|
|
59
|
+
[`IFoafAgent`](IFoafAgent.md).[`weblog`](IFoafAgent.md#weblog)
|
|
64
60
|
|
|
65
61
|
***
|
|
66
62
|
|
|
67
63
|
### openid?
|
|
68
64
|
|
|
69
|
-
> `optional` **openid**: [`
|
|
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
|
-
[`
|
|
75
|
+
[`IFoafAgent`](IFoafAgent.md).[`openid`](IFoafAgent.md#openid)
|
|
80
76
|
|
|
81
77
|
***
|
|
82
78
|
|
|
83
79
|
### interest?
|
|
84
80
|
|
|
85
|
-
> `optional` **interest**: [`
|
|
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
|
-
[`
|
|
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
|
-
[`
|
|
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
|
-
[`
|
|
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
|
-
[`
|
|
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
|
-
[`
|
|
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
|
-
[`
|
|
183
|
+
[`IFoafAgent`](IFoafAgent.md).[`homepage`](IFoafAgent.md#homepage)
|
|
176
184
|
|
|
177
185
|
***
|
|
178
186
|
|
|
179
187
|
### depiction?
|
|
180
188
|
|
|
181
|
-
> `optional` **depiction**: [`
|
|
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
|
-
[`
|
|
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
|
-
[`
|
|
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
|
-
[`
|
|
223
|
+
[`IFoafAgent`](IFoafAgent.md).[`@type`](IFoafAgent.md#type)
|
|
216
224
|
|
|
217
225
|
***
|
|
218
226
|
|
|
219
227
|
### member?
|
|
220
228
|
|
|
221
|
-
> `optional` **member**: `ObjectOrArray`\<[`
|
|
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:
|
|
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
|
-
- [`
|
|
11
|
+
- [`IFoafDocument`](IFoafDocument.md)
|
|
12
12
|
|
|
13
|
-
##
|
|
13
|
+
## Properties
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
### @id?
|
|
16
16
|
|
|
17
|
-
|
|
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
|
-
[`
|
|
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
|
-
[`
|
|
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
|
-
[`
|
|
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
|
-
[`
|
|
87
|
+
[`IFoafDocument`](IFoafDocument.md).[`homepage`](IFoafDocument.md#homepage)
|
|
80
88
|
|
|
81
89
|
***
|
|
82
90
|
|
|
83
91
|
### depiction?
|
|
84
92
|
|
|
85
|
-
> `optional` **depiction**: `
|
|
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
|
-
[`
|
|
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
|
-
[`
|
|
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
|
-
[`
|
|
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
|
-
[`
|
|
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
|
-
[`
|
|
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
|
-
[`
|
|
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**: `
|
|
193
|
+
> `optional` **thumbnail**: `IFoafImage`
|
|
186
194
|
|
|
187
195
|
A derived thumbnail image.
|
|
188
196
|
|