@twin.org/standards-foaf 0.0.3-next.3 → 0.0.3-next.31
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/{Agent.json → FoafAgent.json} +5 -5
- package/dist/es/schemas/{Document.json → FoafDocument.json} +2 -2
- package/dist/es/schemas/{Group.json → FoafGroup.json} +7 -7
- package/dist/es/schemas/{Image.json → FoafImage.json} +3 -3
- package/dist/es/schemas/{Organization.json → FoafOrganization.json} +5 -5
- package/dist/es/schemas/{Person.json → FoafPerson.json} +8 -8
- package/dist/types/index.d.ts +7 -7
- package/dist/types/models/{IAgent.d.ts → IFoafAgent.d.ts} +6 -6
- package/dist/types/models/{IBaseObject.d.ts → IFoafBaseObject.d.ts} +3 -3
- package/dist/types/models/{IDocument.d.ts → IFoafDocument.d.ts} +2 -2
- package/dist/types/models/{IGroup.d.ts → IFoafGroup.d.ts} +3 -3
- package/dist/types/models/{IImage.d.ts → IFoafImage.d.ts} +3 -3
- package/dist/types/models/{IOrganization.d.ts → IFoafOrganization.d.ts} +2 -2
- package/dist/types/models/{IPerson.d.ts → IFoafPerson.d.ts} +5 -5
- package/dist/types/models/foafContextType.d.ts +1 -1
- package/dist/types/models/foafContexts.d.ts +12 -6
- package/docs/changelog.md +196 -0
- package/docs/reference/index.md +7 -7
- package/docs/reference/interfaces/{IAgent.md → IFoafAgent.md} +16 -16
- package/docs/reference/interfaces/{IBaseObject.md → IFoafBaseObject.md} +4 -4
- package/docs/reference/interfaces/{IDocument.md → IFoafDocument.md} +11 -11
- package/docs/reference/interfaces/{IGroup.md → IFoafGroup.md} +20 -20
- package/docs/reference/interfaces/{IImage.md → IFoafImage.md} +14 -14
- package/docs/reference/interfaces/{IOrganization.md → IFoafOrganization.md} +19 -19
- package/docs/reference/interfaces/{IPerson.md → IFoafPerson.md} +21 -21
- package/docs/reference/type-aliases/FoafContextType.md +1 -1
- 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
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import type { ObjectOrArray } from "@twin.org/core";
|
|
2
2
|
import type { FoafContextType } from "./foafContextType.js";
|
|
3
3
|
import type { FoafTypes } from "./foafTypes.js";
|
|
4
|
-
import type {
|
|
4
|
+
import type { IFoafAgent } from "./IFoafAgent.js";
|
|
5
5
|
/**
|
|
6
6
|
* A FOAF Group.
|
|
7
7
|
* @see http://xmlns.com/foaf/0.1/
|
|
8
8
|
*/
|
|
9
|
-
export interface
|
|
9
|
+
export interface IFoafGroup extends IFoafAgent {
|
|
10
10
|
/**
|
|
11
11
|
* The LD Context.
|
|
12
12
|
*/
|
|
@@ -19,5 +19,5 @@ export interface IGroup extends IAgent {
|
|
|
19
19
|
* Indicates a member of a Group
|
|
20
20
|
* @see http://xmlns.com/foaf/spec/#term_member
|
|
21
21
|
*/
|
|
22
|
-
member?: ObjectOrArray<
|
|
22
|
+
member?: ObjectOrArray<IFoafAgent>;
|
|
23
23
|
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import type { IJsonLdNodeObject } from "@twin.org/data-json-ld";
|
|
2
2
|
import type { FoafContextType } from "./foafContextType.js";
|
|
3
3
|
import type { FoafTypes } from "./foafTypes.js";
|
|
4
|
-
import type {
|
|
4
|
+
import type { IFoafDocument } from "./IFoafDocument.js";
|
|
5
5
|
/**
|
|
6
6
|
* A FOAF image.
|
|
7
7
|
* @see http://xmlns.com/foaf/0.1/
|
|
8
8
|
*/
|
|
9
|
-
export interface
|
|
9
|
+
export interface IFoafImage extends IFoafDocument {
|
|
10
10
|
/**
|
|
11
11
|
* The LD Context.
|
|
12
12
|
*
|
|
@@ -25,5 +25,5 @@ export interface IImage extends IDocument {
|
|
|
25
25
|
* A derived thumbnail image.
|
|
26
26
|
* @see http://xmlns.com/foaf/spec/#term_thumbnail
|
|
27
27
|
*/
|
|
28
|
-
thumbnail?:
|
|
28
|
+
thumbnail?: IFoafImage;
|
|
29
29
|
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import type { FoafContextType } from "./foafContextType.js";
|
|
2
2
|
import type { FoafTypes } from "./foafTypes.js";
|
|
3
|
-
import type {
|
|
3
|
+
import type { IFoafAgent } from "./IFoafAgent.js";
|
|
4
4
|
/**
|
|
5
5
|
* A FOAF Organization.
|
|
6
6
|
* @see http://xmlns.com/foaf/0.1/
|
|
7
7
|
*/
|
|
8
|
-
export interface
|
|
8
|
+
export interface IFoafOrganization extends IFoafAgent {
|
|
9
9
|
/**
|
|
10
10
|
* The LD Context.
|
|
11
11
|
*/
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import type { ObjectOrArray } from "@twin.org/core";
|
|
2
2
|
import type { FoafContextType } from "./foafContextType.js";
|
|
3
3
|
import type { FoafTypes } from "./foafTypes.js";
|
|
4
|
-
import type {
|
|
5
|
-
import type {
|
|
4
|
+
import type { IFoafAgent } from "./IFoafAgent.js";
|
|
5
|
+
import type { IFoafImage } from "./IFoafImage.js";
|
|
6
6
|
/**
|
|
7
7
|
* A FOAF Person.
|
|
8
8
|
* @see http://xmlns.com/foaf/0.1/
|
|
9
9
|
*/
|
|
10
|
-
export interface
|
|
10
|
+
export interface IFoafPerson extends IFoafAgent {
|
|
11
11
|
/**
|
|
12
12
|
* The LD Context.
|
|
13
13
|
*/
|
|
@@ -30,12 +30,12 @@ export interface IPerson extends IAgent {
|
|
|
30
30
|
* A person known by this person (indicating some level of reciprocated interaction between the parties).
|
|
31
31
|
* @see http://xmlns.com/foaf/spec/#term_knows
|
|
32
32
|
*/
|
|
33
|
-
knows?: ObjectOrArray<
|
|
33
|
+
knows?: ObjectOrArray<IFoafAgent>;
|
|
34
34
|
/**
|
|
35
35
|
* An image that can be used to represent some thing.
|
|
36
36
|
* @see http://xmlns.com/foaf/spec/#term_img
|
|
37
37
|
*/
|
|
38
|
-
img?:
|
|
38
|
+
img?: IFoafImage;
|
|
39
39
|
/**
|
|
40
40
|
* A short informal nickname characterizing an agent (includes login identifiers, IRC and other chat nicknames).
|
|
41
41
|
* @see http://xmlns.com/foaf/spec/#term_nick
|
|
@@ -3,4 +3,4 @@ import type { FoafContexts } from "./foafContexts.js";
|
|
|
3
3
|
/**
|
|
4
4
|
* The FOAF JSON-LD context type.
|
|
5
5
|
*/
|
|
6
|
-
export type FoafContextType = typeof FoafContexts.
|
|
6
|
+
export type FoafContextType = typeof FoafContexts.Context | [typeof FoafContexts.Context] | [...IJsonLdContextDefinitionElement[], typeof FoafContexts.Context];
|
|
@@ -3,17 +3,23 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export declare const FoafContexts: {
|
|
5
5
|
/**
|
|
6
|
-
* The
|
|
6
|
+
* The canonical RDF namespace URI.
|
|
7
7
|
*/
|
|
8
|
-
readonly
|
|
8
|
+
readonly Namespace: "https://xmlns.com/foaf/0.1/";
|
|
9
9
|
/**
|
|
10
|
-
* The
|
|
10
|
+
* The value to use in @context.
|
|
11
|
+
* Note: Context matches Namespace (both include trailing slash) as per FOAF specification.
|
|
12
|
+
* The FOAF JSON-LD context URL format includes a trailing slash.
|
|
11
13
|
*/
|
|
12
|
-
readonly
|
|
14
|
+
readonly Context: "https://xmlns.com/foaf/0.1/";
|
|
13
15
|
/**
|
|
14
|
-
* The
|
|
16
|
+
* The JSON-LD Context URL.
|
|
15
17
|
*/
|
|
16
|
-
readonly
|
|
18
|
+
readonly JsonLdContext: "https://schema.twindev.org/foaf/types.jsonld";
|
|
19
|
+
/**
|
|
20
|
+
* The namespace location of the hosted version of the JSON Schema.
|
|
21
|
+
*/
|
|
22
|
+
readonly JsonSchemaNamespace: "https://schema.twindev.org/foaf/";
|
|
17
23
|
};
|
|
18
24
|
/**
|
|
19
25
|
* The LD Contexts concerning FOAF.
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,201 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.3-next.31](https://github.com/twinfoundation/standards/compare/standards-foaf-v0.0.3-next.30...standards-foaf-v0.0.3-next.31) (2026-02-05)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Miscellaneous Chores
|
|
7
|
+
|
|
8
|
+
* **standards-foaf:** Synchronize repo versions
|
|
9
|
+
|
|
10
|
+
## [0.0.3-next.30](https://github.com/twinfoundation/standards/compare/standards-foaf-v0.0.3-next.29...standards-foaf-v0.0.3-next.30) (2026-02-04)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Miscellaneous Chores
|
|
14
|
+
|
|
15
|
+
* **standards-foaf:** Synchronize repo versions
|
|
16
|
+
|
|
17
|
+
## [0.0.3-next.29](https://github.com/twinfoundation/standards/compare/standards-foaf-v0.0.3-next.28...standards-foaf-v0.0.3-next.29) (2026-02-03)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Miscellaneous Chores
|
|
21
|
+
|
|
22
|
+
* **standards-foaf:** Synchronize repo versions
|
|
23
|
+
|
|
24
|
+
## [0.0.3-next.28](https://github.com/twinfoundation/standards/compare/standards-foaf-v0.0.3-next.27...standards-foaf-v0.0.3-next.28) (2026-02-03)
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
### Miscellaneous Chores
|
|
28
|
+
|
|
29
|
+
* **standards-foaf:** Synchronize repo versions
|
|
30
|
+
|
|
31
|
+
## [0.0.3-next.27](https://github.com/twinfoundation/standards/compare/standards-foaf-v0.0.3-next.26...standards-foaf-v0.0.3-next.27) (2026-02-03)
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
### Miscellaneous Chores
|
|
35
|
+
|
|
36
|
+
* **standards-foaf:** Synchronize repo versions
|
|
37
|
+
|
|
38
|
+
## [0.0.3-next.26](https://github.com/twinfoundation/standards/compare/standards-foaf-v0.0.3-next.25...standards-foaf-v0.0.3-next.26) (2026-02-02)
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
### Miscellaneous Chores
|
|
42
|
+
|
|
43
|
+
* **standards-foaf:** Synchronize repo versions
|
|
44
|
+
|
|
45
|
+
## [0.0.3-next.25](https://github.com/twinfoundation/standards/compare/standards-foaf-v0.0.3-next.24...standards-foaf-v0.0.3-next.25) (2026-02-02)
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
### Features
|
|
49
|
+
|
|
50
|
+
* register schemas at hosted location ([#128](https://github.com/twinfoundation/standards/issues/128)) ([ab35298](https://github.com/twinfoundation/standards/commit/ab35298c812d69f043f69c35ab5aa1ac4a6aaa90))
|
|
51
|
+
|
|
52
|
+
## [0.0.3-next.24](https://github.com/twinfoundation/standards/compare/standards-foaf-v0.0.3-next.23...standards-foaf-v0.0.3-next.24) (2026-01-30)
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
### Miscellaneous Chores
|
|
56
|
+
|
|
57
|
+
* **standards-foaf:** Synchronize repo versions
|
|
58
|
+
|
|
59
|
+
## [0.0.3-next.23](https://github.com/twinfoundation/standards/compare/standards-foaf-v0.0.3-next.22...standards-foaf-v0.0.3-next.23) (2026-01-30)
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
### Miscellaneous Chores
|
|
63
|
+
|
|
64
|
+
* **standards-foaf:** Synchronize repo versions
|
|
65
|
+
|
|
66
|
+
## [0.0.3-next.22](https://github.com/twinfoundation/standards/compare/standards-foaf-v0.0.3-next.21...standards-foaf-v0.0.3-next.22) (2026-01-29)
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
### Miscellaneous Chores
|
|
70
|
+
|
|
71
|
+
* **standards-foaf:** Synchronize repo versions
|
|
72
|
+
|
|
73
|
+
## [0.0.3-next.21](https://github.com/twinfoundation/standards/compare/standards-foaf-v0.0.3-next.20...standards-foaf-v0.0.3-next.21) (2026-01-23)
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
### Miscellaneous Chores
|
|
77
|
+
|
|
78
|
+
* **standards-foaf:** Synchronize repo versions
|
|
79
|
+
|
|
80
|
+
## [0.0.3-next.20](https://github.com/twinfoundation/standards/compare/standards-foaf-v0.0.3-next.19...standards-foaf-v0.0.3-next.20) (2026-01-21)
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
### Miscellaneous Chores
|
|
84
|
+
|
|
85
|
+
* **standards-foaf:** Synchronize repo versions
|
|
86
|
+
|
|
87
|
+
## [0.0.3-next.19](https://github.com/twinfoundation/standards/compare/standards-foaf-v0.0.3-next.18...standards-foaf-v0.0.3-next.19) (2026-01-21)
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
### Miscellaneous Chores
|
|
91
|
+
|
|
92
|
+
* **standards-foaf:** Synchronize repo versions
|
|
93
|
+
|
|
94
|
+
## [0.0.3-next.18](https://github.com/twinfoundation/standards/compare/standards-foaf-v0.0.3-next.17...standards-foaf-v0.0.3-next.18) (2026-01-21)
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
### Miscellaneous Chores
|
|
98
|
+
|
|
99
|
+
* **standards-foaf:** Synchronize repo versions
|
|
100
|
+
|
|
101
|
+
## [0.0.3-next.17](https://github.com/twinfoundation/standards/compare/standards-foaf-v0.0.3-next.16...standards-foaf-v0.0.3-next.17) (2026-01-21)
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
### Bug Fixes
|
|
105
|
+
|
|
106
|
+
* updating the missing packages ([#114](https://github.com/twinfoundation/standards/issues/114)) ([90b03f8](https://github.com/twinfoundation/standards/commit/90b03f8bdcd81506284d74a445840386c2da2d35))
|
|
107
|
+
|
|
108
|
+
## [0.0.3-next.16](https://github.com/twinfoundation/standards/compare/standards-foaf-v0.0.3-next.15...standards-foaf-v0.0.3-next.16) (2026-01-19)
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
### Miscellaneous Chores
|
|
112
|
+
|
|
113
|
+
* **standards-foaf:** Synchronize repo versions
|
|
114
|
+
|
|
115
|
+
## [0.0.3-next.15](https://github.com/twinfoundation/standards/compare/standards-foaf-v0.0.3-next.14...standards-foaf-v0.0.3-next.15) (2026-01-16)
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
### Miscellaneous Chores
|
|
119
|
+
|
|
120
|
+
* **standards-foaf:** Synchronize repo versions
|
|
121
|
+
|
|
122
|
+
## [0.0.3-next.14](https://github.com/twinfoundation/standards/compare/standards-foaf-v0.0.3-next.13...standards-foaf-v0.0.3-next.14) (2026-01-15)
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
### Miscellaneous Chores
|
|
126
|
+
|
|
127
|
+
* **standards-foaf:** Synchronize repo versions
|
|
128
|
+
|
|
129
|
+
## [0.0.3-next.13](https://github.com/twinfoundation/standards/compare/standards-foaf-v0.0.3-next.12...standards-foaf-v0.0.3-next.13) (2026-01-14)
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
### Miscellaneous Chores
|
|
133
|
+
|
|
134
|
+
* **standards-foaf:** Synchronize repo versions
|
|
135
|
+
|
|
136
|
+
## [0.0.3-next.12](https://github.com/twinfoundation/standards/compare/standards-foaf-v0.0.3-next.11...standards-foaf-v0.0.3-next.12) (2026-01-14)
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
### Miscellaneous Chores
|
|
140
|
+
|
|
141
|
+
* **standards-foaf:** Synchronize repo versions
|
|
142
|
+
|
|
143
|
+
## [0.0.3-next.11](https://github.com/twinfoundation/standards/compare/standards-foaf-v0.0.3-next.10...standards-foaf-v0.0.3-next.11) (2026-01-14)
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
### Features
|
|
147
|
+
|
|
148
|
+
* improved namespaces and contexts ([#102](https://github.com/twinfoundation/standards/issues/102)) ([c74c370](https://github.com/twinfoundation/standards/commit/c74c370cd8145d6166ca4454353f3774c302ac3b))
|
|
149
|
+
|
|
150
|
+
## [0.0.3-next.10](https://github.com/twinfoundation/standards/compare/standards-foaf-v0.0.3-next.9...standards-foaf-v0.0.3-next.10) (2026-01-13)
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
### Miscellaneous Chores
|
|
154
|
+
|
|
155
|
+
* **standards-foaf:** Synchronize repo versions
|
|
156
|
+
|
|
157
|
+
## [0.0.3-next.9](https://github.com/twinfoundation/standards/compare/standards-foaf-v0.0.3-next.8...standards-foaf-v0.0.3-next.9) (2026-01-09)
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
### Miscellaneous Chores
|
|
161
|
+
|
|
162
|
+
* **standards-foaf:** Synchronize repo versions
|
|
163
|
+
|
|
164
|
+
## [0.0.3-next.8](https://github.com/twinfoundation/standards/compare/standards-foaf-v0.0.3-next.7...standards-foaf-v0.0.3-next.8) (2026-01-08)
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
### Miscellaneous Chores
|
|
168
|
+
|
|
169
|
+
* **standards-foaf:** Synchronize repo versions
|
|
170
|
+
|
|
171
|
+
## [0.0.3-next.7](https://github.com/twinfoundation/standards/compare/standards-foaf-v0.0.3-next.6...standards-foaf-v0.0.3-next.7) (2026-01-06)
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
### Features
|
|
175
|
+
|
|
176
|
+
* update type names ([#89](https://github.com/twinfoundation/standards/issues/89)) ([6fdef47](https://github.com/twinfoundation/standards/commit/6fdef4792151f89d1a95a07da8309d05a7b6de3d))
|
|
177
|
+
|
|
178
|
+
## [0.0.3-next.6](https://github.com/twinfoundation/standards/compare/standards-foaf-v0.0.3-next.5...standards-foaf-v0.0.3-next.6) (2025-12-03)
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
### Miscellaneous Chores
|
|
182
|
+
|
|
183
|
+
* **standards-foaf:** Synchronize repo versions
|
|
184
|
+
|
|
185
|
+
## [0.0.3-next.5](https://github.com/twinfoundation/standards/compare/standards-foaf-v0.0.3-next.4...standards-foaf-v0.0.3-next.5) (2025-11-28)
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
### Miscellaneous Chores
|
|
189
|
+
|
|
190
|
+
* **standards-foaf:** Synchronize repo versions
|
|
191
|
+
|
|
192
|
+
## [0.0.3-next.4](https://github.com/twinfoundation/standards/compare/standards-foaf-v0.0.3-next.3...standards-foaf-v0.0.3-next.4) (2025-11-18)
|
|
193
|
+
|
|
194
|
+
|
|
195
|
+
### Miscellaneous Chores
|
|
196
|
+
|
|
197
|
+
* **standards-foaf:** Synchronize repo versions
|
|
198
|
+
|
|
3
199
|
## [0.0.3-next.3](https://github.com/twinfoundation/standards/compare/standards-foaf-v0.0.3-next.2...standards-foaf-v0.0.3-next.3) (2025-11-18)
|
|
4
200
|
|
|
5
201
|
|
package/docs/reference/index.md
CHANGED
|
@@ -6,13 +6,13 @@
|
|
|
6
6
|
|
|
7
7
|
## Interfaces
|
|
8
8
|
|
|
9
|
-
- [
|
|
10
|
-
- [
|
|
11
|
-
- [
|
|
12
|
-
- [
|
|
13
|
-
- [
|
|
14
|
-
- [
|
|
15
|
-
- [
|
|
9
|
+
- [IFoafAgent](interfaces/IFoafAgent.md)
|
|
10
|
+
- [IFoafBaseObject](interfaces/IFoafBaseObject.md)
|
|
11
|
+
- [IFoafDocument](interfaces/IFoafDocument.md)
|
|
12
|
+
- [IFoafGroup](interfaces/IFoafGroup.md)
|
|
13
|
+
- [IFoafImage](interfaces/IFoafImage.md)
|
|
14
|
+
- [IFoafOrganization](interfaces/IFoafOrganization.md)
|
|
15
|
+
- [IFoafPerson](interfaces/IFoafPerson.md)
|
|
16
16
|
|
|
17
17
|
## Type Aliases
|
|
18
18
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Interface:
|
|
1
|
+
# Interface: IFoafAgent
|
|
2
2
|
|
|
3
3
|
A FOAF Agent.
|
|
4
4
|
|
|
@@ -8,13 +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
|
-
- [`
|
|
15
|
+
- [`IFoafGroup`](IFoafGroup.md)
|
|
16
|
+
- [`IFoafOrganization`](IFoafOrganization.md)
|
|
17
|
+
- [`IFoafPerson`](IFoafPerson.md)
|
|
18
18
|
|
|
19
19
|
## Indexable
|
|
20
20
|
|
|
@@ -30,7 +30,7 @@ The LD Context.
|
|
|
30
30
|
|
|
31
31
|
#### Overrides
|
|
32
32
|
|
|
33
|
-
[`
|
|
33
|
+
[`IFoafBaseObject`](IFoafBaseObject.md).[`@context`](IFoafBaseObject.md#context)
|
|
34
34
|
|
|
35
35
|
***
|
|
36
36
|
|
|
@@ -42,7 +42,7 @@ Type.
|
|
|
42
42
|
|
|
43
43
|
#### Overrides
|
|
44
44
|
|
|
45
|
-
`
|
|
45
|
+
`IFoafBaseObject.@type`
|
|
46
46
|
|
|
47
47
|
***
|
|
48
48
|
|
|
@@ -72,7 +72,7 @@ http://xmlns.com/foaf/spec/#term_made
|
|
|
72
72
|
|
|
73
73
|
### weblog?
|
|
74
74
|
|
|
75
|
-
> `optional` **weblog**: [`
|
|
75
|
+
> `optional` **weblog**: [`IFoafDocument`](IFoafDocument.md)
|
|
76
76
|
|
|
77
77
|
A weblog of some thing (whether person, group, company etc.).
|
|
78
78
|
|
|
@@ -84,7 +84,7 @@ http://xmlns.com/foaf/spec/#term_weblog
|
|
|
84
84
|
|
|
85
85
|
### openid?
|
|
86
86
|
|
|
87
|
-
> `optional` **openid**: [`
|
|
87
|
+
> `optional` **openid**: [`IFoafDocument`](IFoafDocument.md)
|
|
88
88
|
|
|
89
89
|
An OpenID for an agent.
|
|
90
90
|
|
|
@@ -96,7 +96,7 @@ http://xmlns.com/foaf/spec/#term_openid
|
|
|
96
96
|
|
|
97
97
|
### interest?
|
|
98
98
|
|
|
99
|
-
> `optional` **interest**: [`
|
|
99
|
+
> `optional` **interest**: [`IFoafDocument`](IFoafDocument.md)
|
|
100
100
|
|
|
101
101
|
A page about a topic of interest to this person.
|
|
102
102
|
|
|
@@ -130,7 +130,7 @@ http://xmlns.com/foaf/spec/#term_name
|
|
|
130
130
|
|
|
131
131
|
#### Inherited from
|
|
132
132
|
|
|
133
|
-
[`
|
|
133
|
+
[`IFoafBaseObject`](IFoafBaseObject.md).[`name`](IFoafBaseObject.md#name)
|
|
134
134
|
|
|
135
135
|
***
|
|
136
136
|
|
|
@@ -146,7 +146,7 @@ http://xmlns.com/foaf/spec/#term_title
|
|
|
146
146
|
|
|
147
147
|
#### Inherited from
|
|
148
148
|
|
|
149
|
-
[`
|
|
149
|
+
[`IFoafBaseObject`](IFoafBaseObject.md).[`title`](IFoafBaseObject.md#title)
|
|
150
150
|
|
|
151
151
|
***
|
|
152
152
|
|
|
@@ -162,7 +162,7 @@ http://xmlns.com/foaf/spec/#term_mbox
|
|
|
162
162
|
|
|
163
163
|
#### Inherited from
|
|
164
164
|
|
|
165
|
-
[`
|
|
165
|
+
[`IFoafBaseObject`](IFoafBaseObject.md).[`mbox`](IFoafBaseObject.md#mbox)
|
|
166
166
|
|
|
167
167
|
***
|
|
168
168
|
|
|
@@ -178,13 +178,13 @@ http://xmlns.com/foaf/spec/#term_homepage
|
|
|
178
178
|
|
|
179
179
|
#### Inherited from
|
|
180
180
|
|
|
181
|
-
[`
|
|
181
|
+
[`IFoafBaseObject`](IFoafBaseObject.md).[`homepage`](IFoafBaseObject.md#homepage)
|
|
182
182
|
|
|
183
183
|
***
|
|
184
184
|
|
|
185
185
|
### depiction?
|
|
186
186
|
|
|
187
|
-
> `optional` **depiction**: [`
|
|
187
|
+
> `optional` **depiction**: [`IFoafImage`](IFoafImage.md)
|
|
188
188
|
|
|
189
189
|
A depiction of some thing.
|
|
190
190
|
|
|
@@ -194,4 +194,4 @@ http://xmlns.com/foaf/spec/#term_depiction
|
|
|
194
194
|
|
|
195
195
|
#### Inherited from
|
|
196
196
|
|
|
197
|
-
[`
|
|
197
|
+
[`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
|
|
|
@@ -12,8 +12,8 @@ http://xmlns.com/foaf/0.1/
|
|
|
12
12
|
|
|
13
13
|
## Extended by
|
|
14
14
|
|
|
15
|
-
- [`
|
|
16
|
-
- [`
|
|
15
|
+
- [`IFoafAgent`](IFoafAgent.md)
|
|
16
|
+
- [`IFoafDocument`](IFoafDocument.md)
|
|
17
17
|
|
|
18
18
|
## Indexable
|
|
19
19
|
|
|
@@ -83,7 +83,7 @@ http://xmlns.com/foaf/spec/#term_homepage
|
|
|
83
83
|
|
|
84
84
|
### depiction?
|
|
85
85
|
|
|
86
|
-
> `optional` **depiction**: [`
|
|
86
|
+
> `optional` **depiction**: [`IFoafImage`](IFoafImage.md)
|
|
87
87
|
|
|
88
88
|
A depiction of some thing.
|
|
89
89
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Interface:
|
|
1
|
+
# Interface: IFoafDocument
|
|
2
2
|
|
|
3
3
|
A FOAF Document
|
|
4
4
|
|
|
@@ -8,11 +8,11 @@ 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
|
## Indexable
|
|
18
18
|
|
|
@@ -32,7 +32,7 @@ http://xmlns.com/foaf/spec/#term_name
|
|
|
32
32
|
|
|
33
33
|
#### Inherited from
|
|
34
34
|
|
|
35
|
-
[`
|
|
35
|
+
[`IFoafBaseObject`](IFoafBaseObject.md).[`name`](IFoafBaseObject.md#name)
|
|
36
36
|
|
|
37
37
|
***
|
|
38
38
|
|
|
@@ -48,7 +48,7 @@ http://xmlns.com/foaf/spec/#term_title
|
|
|
48
48
|
|
|
49
49
|
#### Inherited from
|
|
50
50
|
|
|
51
|
-
[`
|
|
51
|
+
[`IFoafBaseObject`](IFoafBaseObject.md).[`title`](IFoafBaseObject.md#title)
|
|
52
52
|
|
|
53
53
|
***
|
|
54
54
|
|
|
@@ -64,7 +64,7 @@ http://xmlns.com/foaf/spec/#term_mbox
|
|
|
64
64
|
|
|
65
65
|
#### Inherited from
|
|
66
66
|
|
|
67
|
-
[`
|
|
67
|
+
[`IFoafBaseObject`](IFoafBaseObject.md).[`mbox`](IFoafBaseObject.md#mbox)
|
|
68
68
|
|
|
69
69
|
***
|
|
70
70
|
|
|
@@ -80,13 +80,13 @@ http://xmlns.com/foaf/spec/#term_homepage
|
|
|
80
80
|
|
|
81
81
|
#### Inherited from
|
|
82
82
|
|
|
83
|
-
[`
|
|
83
|
+
[`IFoafBaseObject`](IFoafBaseObject.md).[`homepage`](IFoafBaseObject.md#homepage)
|
|
84
84
|
|
|
85
85
|
***
|
|
86
86
|
|
|
87
87
|
### depiction?
|
|
88
88
|
|
|
89
|
-
> `optional` **depiction**: [`
|
|
89
|
+
> `optional` **depiction**: [`IFoafImage`](IFoafImage.md)
|
|
90
90
|
|
|
91
91
|
A depiction of some thing.
|
|
92
92
|
|
|
@@ -96,7 +96,7 @@ http://xmlns.com/foaf/spec/#term_depiction
|
|
|
96
96
|
|
|
97
97
|
#### Inherited from
|
|
98
98
|
|
|
99
|
-
[`
|
|
99
|
+
[`IFoafBaseObject`](IFoafBaseObject.md).[`depiction`](IFoafBaseObject.md#depiction)
|
|
100
100
|
|
|
101
101
|
***
|
|
102
102
|
|
|
@@ -108,7 +108,7 @@ The LD Context.
|
|
|
108
108
|
|
|
109
109
|
#### Overrides
|
|
110
110
|
|
|
111
|
-
[`
|
|
111
|
+
[`IFoafBaseObject`](IFoafBaseObject.md).[`@context`](IFoafBaseObject.md#context)
|
|
112
112
|
|
|
113
113
|
***
|
|
114
114
|
|
|
@@ -120,7 +120,7 @@ Type.
|
|
|
120
120
|
|
|
121
121
|
#### Overrides
|
|
122
122
|
|
|
123
|
-
`
|
|
123
|
+
`IFoafBaseObject.@type`
|
|
124
124
|
|
|
125
125
|
***
|
|
126
126
|
|