@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,13 +1,13 @@
|
|
|
1
1
|
import type { ObjectOrArray } from "@twin.org/core";
|
|
2
|
-
import type { IJsonLdNodeObject } from "@twin.org/data-json-ld";
|
|
2
|
+
import type { IJsonLdNodeObject, JsonLdObjectWithAliases } from "@twin.org/data-json-ld";
|
|
3
3
|
import type { FoafContextType } from "./foafContextType.js";
|
|
4
4
|
import type { FoafTypes } from "./foafTypes.js";
|
|
5
|
-
import type {
|
|
5
|
+
import type { IFoafBaseObject } from "./IFoafBaseObject.js";
|
|
6
6
|
/**
|
|
7
7
|
* A FOAF Document
|
|
8
8
|
* @see http://xmlns.com/foaf/0.1/
|
|
9
9
|
*/
|
|
10
|
-
export interface
|
|
10
|
+
export interface IFoafDocument extends IFoafBaseObject {
|
|
11
11
|
/**
|
|
12
12
|
* The LD Context.
|
|
13
13
|
*/
|
|
@@ -32,3 +32,8 @@ export interface IDocument extends IBaseObject {
|
|
|
32
32
|
*/
|
|
33
33
|
sha1?: string;
|
|
34
34
|
}
|
|
35
|
+
/**
|
|
36
|
+
* A FOAF Document with FOAF-prefixed aliases for non-JSON-LD keys.
|
|
37
|
+
* This allows using either prefixed aliases (e.g., "foaf:name") when defining a FOAF Document.
|
|
38
|
+
*/
|
|
39
|
+
export type IFoafDocumentWithAliases<T extends string = "foaf"> = JsonLdObjectWithAliases<IFoafDocument, T>;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import type { ObjectOrArray } from "@twin.org/core";
|
|
2
|
+
import type { JsonLdObjectWithAliases } from "@twin.org/data-json-ld";
|
|
3
|
+
import type { FoafContextType } from "./foafContextType.js";
|
|
4
|
+
import type { FoafTypes } from "./foafTypes.js";
|
|
5
|
+
import type { IFoafAgent } from "./IFoafAgent.js";
|
|
6
|
+
/**
|
|
7
|
+
* A FOAF Group.
|
|
8
|
+
* @see http://xmlns.com/foaf/0.1/
|
|
9
|
+
*/
|
|
10
|
+
export interface IFoafGroup extends IFoafAgent {
|
|
11
|
+
/**
|
|
12
|
+
* The LD Context.
|
|
13
|
+
*/
|
|
14
|
+
"@context"?: FoafContextType;
|
|
15
|
+
/**
|
|
16
|
+
* Type.
|
|
17
|
+
*/
|
|
18
|
+
"@type": typeof FoafTypes.Group;
|
|
19
|
+
/**
|
|
20
|
+
* Indicates a member of a Group
|
|
21
|
+
* @see http://xmlns.com/foaf/spec/#term_member
|
|
22
|
+
*/
|
|
23
|
+
member?: ObjectOrArray<IFoafAgent>;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* A FOAF Group with FOAF-prefixed aliases for non-JSON-LD keys.
|
|
27
|
+
* This allows using either prefixed aliases (e.g., "foaf:name") when defining a FOAF Group.
|
|
28
|
+
*/
|
|
29
|
+
export type IFoafGroupWithAliases<T extends string = "foaf"> = JsonLdObjectWithAliases<IFoafGroup, T>;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import type { IJsonLdNodeObject } from "@twin.org/data-json-ld";
|
|
1
|
+
import type { IJsonLdNodeObject, JsonLdObjectWithAliases } 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,10 @@ 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
|
}
|
|
30
|
+
/**
|
|
31
|
+
* A FOAF Image with FOAF-prefixed aliases for non-JSON-LD keys.
|
|
32
|
+
* This allows using either prefixed aliases (e.g., "foaf:name") when defining a FOAF Image.
|
|
33
|
+
*/
|
|
34
|
+
export type IFoafImageWithAliases<T extends string = "foaf"> = JsonLdObjectWithAliases<IFoafImage, T>;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import type { JsonLdObjectWithAliases } from "@twin.org/data-json-ld";
|
|
2
|
+
import type { FoafContextType } from "./foafContextType.js";
|
|
3
|
+
import type { FoafTypes } from "./foafTypes.js";
|
|
4
|
+
import type { IFoafAgent } from "./IFoafAgent.js";
|
|
5
|
+
/**
|
|
6
|
+
* A FOAF Organization.
|
|
7
|
+
* @see http://xmlns.com/foaf/0.1/
|
|
8
|
+
*/
|
|
9
|
+
export interface IFoafOrganization extends IFoafAgent {
|
|
10
|
+
/**
|
|
11
|
+
* The LD Context.
|
|
12
|
+
*/
|
|
13
|
+
"@context"?: FoafContextType;
|
|
14
|
+
/**
|
|
15
|
+
* Type.
|
|
16
|
+
*/
|
|
17
|
+
"@type": typeof FoafTypes.Organization;
|
|
18
|
+
}
|
|
19
|
+
/**
|
|
20
|
+
* A FOAF Organization with FOAF-prefixed aliases for non-JSON-LD keys.
|
|
21
|
+
* This allows using either prefixed aliases (e.g., "foaf:name") when defining a FOAF Organization.
|
|
22
|
+
*/
|
|
23
|
+
export type IFoafOrganizationWithAliases<T extends string = "foaf"> = JsonLdObjectWithAliases<IFoafOrganization, T>;
|
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
import type { ObjectOrArray } from "@twin.org/core";
|
|
2
|
+
import type { JsonLdObjectWithAliases } from "@twin.org/data-json-ld";
|
|
2
3
|
import type { FoafContextType } from "./foafContextType.js";
|
|
3
4
|
import type { FoafTypes } from "./foafTypes.js";
|
|
4
|
-
import type {
|
|
5
|
-
import type {
|
|
5
|
+
import type { IFoafAgent } from "./IFoafAgent.js";
|
|
6
|
+
import type { IFoafImage } from "./IFoafImage.js";
|
|
6
7
|
/**
|
|
7
8
|
* A FOAF Person.
|
|
8
9
|
* @see http://xmlns.com/foaf/0.1/
|
|
9
10
|
*/
|
|
10
|
-
export interface
|
|
11
|
+
export interface IFoafPerson extends IFoafAgent {
|
|
11
12
|
/**
|
|
12
13
|
* The LD Context.
|
|
13
14
|
*/
|
|
@@ -30,15 +31,20 @@ export interface IPerson extends IAgent {
|
|
|
30
31
|
* A person known by this person (indicating some level of reciprocated interaction between the parties).
|
|
31
32
|
* @see http://xmlns.com/foaf/spec/#term_knows
|
|
32
33
|
*/
|
|
33
|
-
knows?: ObjectOrArray<
|
|
34
|
+
knows?: ObjectOrArray<IFoafAgent>;
|
|
34
35
|
/**
|
|
35
36
|
* An image that can be used to represent some thing.
|
|
36
37
|
* @see http://xmlns.com/foaf/spec/#term_img
|
|
37
38
|
*/
|
|
38
|
-
img?:
|
|
39
|
+
img?: IFoafImage;
|
|
39
40
|
/**
|
|
40
41
|
* A short informal nickname characterizing an agent (includes login identifiers, IRC and other chat nicknames).
|
|
41
42
|
* @see http://xmlns.com/foaf/spec/#term_nick
|
|
42
43
|
*/
|
|
43
44
|
nick?: string;
|
|
44
45
|
}
|
|
46
|
+
/**
|
|
47
|
+
* A FOAF Person with FOAF-prefixed aliases for non-JSON-LD keys.
|
|
48
|
+
* This allows using either prefixed aliases (e.g., "foaf:name") when defining a FOAF Person.
|
|
49
|
+
*/
|
|
50
|
+
export type IFoafPersonWithAliases<T extends string = "foaf"> = JsonLdObjectWithAliases<IFoafPerson, T>;
|
|
@@ -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,328 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.3-next.50](https://github.com/twinfoundation/standards/compare/standards-foaf-v0.0.3-next.49...standards-foaf-v0.0.3-next.50) (2026-03-09)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Miscellaneous Chores
|
|
7
|
+
|
|
8
|
+
* **standards-foaf:** Synchronize repo versions
|
|
9
|
+
|
|
10
|
+
## [0.0.3-next.49](https://github.com/twinfoundation/standards/compare/standards-foaf-v0.0.3-next.48...standards-foaf-v0.0.3-next.49) (2026-03-06)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Miscellaneous Chores
|
|
14
|
+
|
|
15
|
+
* **standards-foaf:** Synchronize repo versions
|
|
16
|
+
|
|
17
|
+
## [0.0.3-next.48](https://github.com/twinfoundation/standards/compare/standards-foaf-v0.0.3-next.47...standards-foaf-v0.0.3-next.48) (2026-03-06)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Miscellaneous Chores
|
|
21
|
+
|
|
22
|
+
* **standards-foaf:** Synchronize repo versions
|
|
23
|
+
|
|
24
|
+
## [0.0.3-next.47](https://github.com/twinfoundation/standards/compare/standards-foaf-v0.0.3-next.46...standards-foaf-v0.0.3-next.47) (2026-03-06)
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
### Miscellaneous Chores
|
|
28
|
+
|
|
29
|
+
* **standards-foaf:** Synchronize repo versions
|
|
30
|
+
|
|
31
|
+
## [0.0.3-next.46](https://github.com/twinfoundation/standards/compare/standards-foaf-v0.0.3-next.45...standards-foaf-v0.0.3-next.46) (2026-03-05)
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
### Miscellaneous Chores
|
|
35
|
+
|
|
36
|
+
* **standards-foaf:** Synchronize repo versions
|
|
37
|
+
|
|
38
|
+
## [0.0.3-next.45](https://github.com/twinfoundation/standards/compare/standards-foaf-v0.0.3-next.44...standards-foaf-v0.0.3-next.45) (2026-03-04)
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
### Miscellaneous Chores
|
|
42
|
+
|
|
43
|
+
* **standards-foaf:** Synchronize repo versions
|
|
44
|
+
|
|
45
|
+
## [0.0.3-next.44](https://github.com/twinfoundation/standards/compare/standards-foaf-v0.0.3-next.43...standards-foaf-v0.0.3-next.44) (2026-03-04)
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
### Miscellaneous Chores
|
|
49
|
+
|
|
50
|
+
* **standards-foaf:** Synchronize repo versions
|
|
51
|
+
|
|
52
|
+
## [0.0.3-next.43](https://github.com/twinfoundation/standards/compare/standards-foaf-v0.0.3-next.42...standards-foaf-v0.0.3-next.43) (2026-02-25)
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
### Features
|
|
56
|
+
|
|
57
|
+
* update schemas to support additional properties ([4679e21](https://github.com/twinfoundation/standards/commit/4679e21728a54cb587f120874841c3d1ed3771de))
|
|
58
|
+
|
|
59
|
+
## [0.0.3-next.42](https://github.com/twinfoundation/standards/compare/standards-foaf-v0.0.3-next.41...standards-foaf-v0.0.3-next.42) (2026-02-25)
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
### Features
|
|
63
|
+
|
|
64
|
+
* remove IJsonLdNodeObject base interfaces ([#172](https://github.com/twinfoundation/standards/issues/172)) ([8ff8d7a](https://github.com/twinfoundation/standards/commit/8ff8d7a2892d626879b76ba5da912469ff899954))
|
|
65
|
+
|
|
66
|
+
## [0.0.3-next.41](https://github.com/twinfoundation/standards/compare/standards-foaf-v0.0.3-next.40...standards-foaf-v0.0.3-next.41) (2026-02-23)
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
### Miscellaneous Chores
|
|
70
|
+
|
|
71
|
+
* **standards-foaf:** Synchronize repo versions
|
|
72
|
+
|
|
73
|
+
## [0.0.3-next.40](https://github.com/twinfoundation/standards/compare/standards-foaf-v0.0.3-next.39...standards-foaf-v0.0.3-next.40) (2026-02-18)
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
### Miscellaneous Chores
|
|
77
|
+
|
|
78
|
+
* **standards-foaf:** Synchronize repo versions
|
|
79
|
+
|
|
80
|
+
## [0.0.3-next.39](https://github.com/twinfoundation/standards/compare/standards-foaf-v0.0.3-next.38...standards-foaf-v0.0.3-next.39) (2026-02-13)
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
### Miscellaneous Chores
|
|
84
|
+
|
|
85
|
+
* **standards-foaf:** Synchronize repo versions
|
|
86
|
+
|
|
87
|
+
## [0.0.3-next.38](https://github.com/twinfoundation/standards/compare/standards-foaf-v0.0.3-next.37...standards-foaf-v0.0.3-next.38) (2026-02-13)
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
### Miscellaneous Chores
|
|
91
|
+
|
|
92
|
+
* **standards-foaf:** Synchronize repo versions
|
|
93
|
+
|
|
94
|
+
## [0.0.3-next.37](https://github.com/twinfoundation/standards/compare/standards-foaf-v0.0.3-next.36...standards-foaf-v0.0.3-next.37) (2026-02-12)
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
### Miscellaneous Chores
|
|
98
|
+
|
|
99
|
+
* **standards-foaf:** Synchronize repo versions
|
|
100
|
+
|
|
101
|
+
## [0.0.3-next.36](https://github.com/twinfoundation/standards/compare/standards-foaf-v0.0.3-next.35...standards-foaf-v0.0.3-next.36) (2026-02-11)
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
### Miscellaneous Chores
|
|
105
|
+
|
|
106
|
+
* **standards-foaf:** Synchronize repo versions
|
|
107
|
+
|
|
108
|
+
## [0.0.3-next.35](https://github.com/twinfoundation/standards/compare/standards-foaf-v0.0.3-next.34...standards-foaf-v0.0.3-next.35) (2026-02-10)
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
### Miscellaneous Chores
|
|
112
|
+
|
|
113
|
+
* **standards-foaf:** Synchronize repo versions
|
|
114
|
+
|
|
115
|
+
## [0.0.3-next.34](https://github.com/twinfoundation/standards/compare/standards-foaf-v0.0.3-next.33...standards-foaf-v0.0.3-next.34) (2026-02-10)
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
### Miscellaneous Chores
|
|
119
|
+
|
|
120
|
+
* **standards-foaf:** Synchronize repo versions
|
|
121
|
+
|
|
122
|
+
## [0.0.3-next.33](https://github.com/twinfoundation/standards/compare/standards-foaf-v0.0.3-next.32...standards-foaf-v0.0.3-next.33) (2026-02-06)
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
### Features
|
|
126
|
+
|
|
127
|
+
* add w3c dcat standards package ([#68](https://github.com/twinfoundation/standards/issues/68)) ([85746c6](https://github.com/twinfoundation/standards/commit/85746c673464498a52e9c30ce498fd88b81a7434))
|
|
128
|
+
* improved namespaces and contexts ([#102](https://github.com/twinfoundation/standards/issues/102)) ([c74c370](https://github.com/twinfoundation/standards/commit/c74c370cd8145d6166ca4454353f3774c302ac3b))
|
|
129
|
+
* register schemas at hosted location ([#128](https://github.com/twinfoundation/standards/issues/128)) ([ab35298](https://github.com/twinfoundation/standards/commit/ab35298c812d69f043f69c35ab5aa1ac4a6aaa90))
|
|
130
|
+
* update type names ([#89](https://github.com/twinfoundation/standards/issues/89)) ([6fdef47](https://github.com/twinfoundation/standards/commit/6fdef4792151f89d1a95a07da8309d05a7b6de3d))
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
### Bug Fixes
|
|
134
|
+
|
|
135
|
+
* updating the missing packages ([#114](https://github.com/twinfoundation/standards/issues/114)) ([90b03f8](https://github.com/twinfoundation/standards/commit/90b03f8bdcd81506284d74a445840386c2da2d35))
|
|
136
|
+
|
|
137
|
+
## [0.0.3-next.32](https://github.com/twinfoundation/standards/compare/standards-foaf-v0.0.3-next.31...standards-foaf-v0.0.3-next.32) (2026-02-06)
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
### Miscellaneous Chores
|
|
141
|
+
|
|
142
|
+
* **standards-foaf:** Synchronize repo versions
|
|
143
|
+
|
|
144
|
+
## [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)
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
### Miscellaneous Chores
|
|
148
|
+
|
|
149
|
+
* **standards-foaf:** Synchronize repo versions
|
|
150
|
+
|
|
151
|
+
## [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)
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
### Miscellaneous Chores
|
|
155
|
+
|
|
156
|
+
* **standards-foaf:** Synchronize repo versions
|
|
157
|
+
|
|
158
|
+
## [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)
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+
### Miscellaneous Chores
|
|
162
|
+
|
|
163
|
+
* **standards-foaf:** Synchronize repo versions
|
|
164
|
+
|
|
165
|
+
## [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)
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
### Miscellaneous Chores
|
|
169
|
+
|
|
170
|
+
* **standards-foaf:** Synchronize repo versions
|
|
171
|
+
|
|
172
|
+
## [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)
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
### Miscellaneous Chores
|
|
176
|
+
|
|
177
|
+
* **standards-foaf:** Synchronize repo versions
|
|
178
|
+
|
|
179
|
+
## [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)
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
### Miscellaneous Chores
|
|
183
|
+
|
|
184
|
+
* **standards-foaf:** Synchronize repo versions
|
|
185
|
+
|
|
186
|
+
## [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)
|
|
187
|
+
|
|
188
|
+
|
|
189
|
+
### Features
|
|
190
|
+
|
|
191
|
+
* register schemas at hosted location ([#128](https://github.com/twinfoundation/standards/issues/128)) ([ab35298](https://github.com/twinfoundation/standards/commit/ab35298c812d69f043f69c35ab5aa1ac4a6aaa90))
|
|
192
|
+
|
|
193
|
+
## [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)
|
|
194
|
+
|
|
195
|
+
|
|
196
|
+
### Miscellaneous Chores
|
|
197
|
+
|
|
198
|
+
* **standards-foaf:** Synchronize repo versions
|
|
199
|
+
|
|
200
|
+
## [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)
|
|
201
|
+
|
|
202
|
+
|
|
203
|
+
### Miscellaneous Chores
|
|
204
|
+
|
|
205
|
+
* **standards-foaf:** Synchronize repo versions
|
|
206
|
+
|
|
207
|
+
## [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)
|
|
208
|
+
|
|
209
|
+
|
|
210
|
+
### Miscellaneous Chores
|
|
211
|
+
|
|
212
|
+
* **standards-foaf:** Synchronize repo versions
|
|
213
|
+
|
|
214
|
+
## [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)
|
|
215
|
+
|
|
216
|
+
|
|
217
|
+
### Miscellaneous Chores
|
|
218
|
+
|
|
219
|
+
* **standards-foaf:** Synchronize repo versions
|
|
220
|
+
|
|
221
|
+
## [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)
|
|
222
|
+
|
|
223
|
+
|
|
224
|
+
### Miscellaneous Chores
|
|
225
|
+
|
|
226
|
+
* **standards-foaf:** Synchronize repo versions
|
|
227
|
+
|
|
228
|
+
## [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)
|
|
229
|
+
|
|
230
|
+
|
|
231
|
+
### Miscellaneous Chores
|
|
232
|
+
|
|
233
|
+
* **standards-foaf:** Synchronize repo versions
|
|
234
|
+
|
|
235
|
+
## [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)
|
|
236
|
+
|
|
237
|
+
|
|
238
|
+
### Miscellaneous Chores
|
|
239
|
+
|
|
240
|
+
* **standards-foaf:** Synchronize repo versions
|
|
241
|
+
|
|
242
|
+
## [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)
|
|
243
|
+
|
|
244
|
+
|
|
245
|
+
### Bug Fixes
|
|
246
|
+
|
|
247
|
+
* updating the missing packages ([#114](https://github.com/twinfoundation/standards/issues/114)) ([90b03f8](https://github.com/twinfoundation/standards/commit/90b03f8bdcd81506284d74a445840386c2da2d35))
|
|
248
|
+
|
|
249
|
+
## [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)
|
|
250
|
+
|
|
251
|
+
|
|
252
|
+
### Miscellaneous Chores
|
|
253
|
+
|
|
254
|
+
* **standards-foaf:** Synchronize repo versions
|
|
255
|
+
|
|
256
|
+
## [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)
|
|
257
|
+
|
|
258
|
+
|
|
259
|
+
### Miscellaneous Chores
|
|
260
|
+
|
|
261
|
+
* **standards-foaf:** Synchronize repo versions
|
|
262
|
+
|
|
263
|
+
## [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)
|
|
264
|
+
|
|
265
|
+
|
|
266
|
+
### Miscellaneous Chores
|
|
267
|
+
|
|
268
|
+
* **standards-foaf:** Synchronize repo versions
|
|
269
|
+
|
|
270
|
+
## [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)
|
|
271
|
+
|
|
272
|
+
|
|
273
|
+
### Miscellaneous Chores
|
|
274
|
+
|
|
275
|
+
* **standards-foaf:** Synchronize repo versions
|
|
276
|
+
|
|
277
|
+
## [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)
|
|
278
|
+
|
|
279
|
+
|
|
280
|
+
### Miscellaneous Chores
|
|
281
|
+
|
|
282
|
+
* **standards-foaf:** Synchronize repo versions
|
|
283
|
+
|
|
284
|
+
## [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)
|
|
285
|
+
|
|
286
|
+
|
|
287
|
+
### Features
|
|
288
|
+
|
|
289
|
+
* improved namespaces and contexts ([#102](https://github.com/twinfoundation/standards/issues/102)) ([c74c370](https://github.com/twinfoundation/standards/commit/c74c370cd8145d6166ca4454353f3774c302ac3b))
|
|
290
|
+
|
|
291
|
+
## [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)
|
|
292
|
+
|
|
293
|
+
|
|
294
|
+
### Miscellaneous Chores
|
|
295
|
+
|
|
296
|
+
* **standards-foaf:** Synchronize repo versions
|
|
297
|
+
|
|
298
|
+
## [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)
|
|
299
|
+
|
|
300
|
+
|
|
301
|
+
### Miscellaneous Chores
|
|
302
|
+
|
|
303
|
+
* **standards-foaf:** Synchronize repo versions
|
|
304
|
+
|
|
305
|
+
## [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)
|
|
306
|
+
|
|
307
|
+
|
|
308
|
+
### Miscellaneous Chores
|
|
309
|
+
|
|
310
|
+
* **standards-foaf:** Synchronize repo versions
|
|
311
|
+
|
|
312
|
+
## [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)
|
|
313
|
+
|
|
314
|
+
|
|
315
|
+
### Features
|
|
316
|
+
|
|
317
|
+
* update type names ([#89](https://github.com/twinfoundation/standards/issues/89)) ([6fdef47](https://github.com/twinfoundation/standards/commit/6fdef4792151f89d1a95a07da8309d05a7b6de3d))
|
|
318
|
+
|
|
319
|
+
## [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)
|
|
320
|
+
|
|
321
|
+
|
|
322
|
+
### Miscellaneous Chores
|
|
323
|
+
|
|
324
|
+
* **standards-foaf:** Synchronize repo versions
|
|
325
|
+
|
|
3
326
|
## [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)
|
|
4
327
|
|
|
5
328
|
|
package/docs/reference/index.md
CHANGED
|
@@ -6,16 +6,22 @@
|
|
|
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
|
|
|
19
|
+
- [IFoafAgentWithAliases](type-aliases/IFoafAgentWithAliases.md)
|
|
20
|
+
- [IFoafDocumentWithAliases](type-aliases/IFoafDocumentWithAliases.md)
|
|
21
|
+
- [IFoafGroupWithAliases](type-aliases/IFoafGroupWithAliases.md)
|
|
22
|
+
- [IFoafImageWithAliases](type-aliases/IFoafImageWithAliases.md)
|
|
23
|
+
- [IFoafOrganizationWithAliases](type-aliases/IFoafOrganizationWithAliases.md)
|
|
24
|
+
- [IFoafPersonWithAliases](type-aliases/IFoafPersonWithAliases.md)
|
|
19
25
|
- [FoafContextType](type-aliases/FoafContextType.md)
|
|
20
26
|
- [FoafContexts](type-aliases/FoafContexts.md)
|
|
21
27
|
- [FoafTypes](type-aliases/FoafTypes.md)
|