@twin.org/standards-foaf 0.0.3-next.62 → 0.0.3-next.64
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/models/IFoafAgent.js.map +1 -1
- package/dist/es/models/IFoafDocument.js.map +1 -1
- package/dist/es/models/IFoafGroup.js.map +1 -1
- package/dist/es/models/IFoafImage.js.map +1 -1
- package/dist/es/models/IFoafOrganization.js.map +1 -1
- package/dist/es/models/IFoafPerson.js.map +1 -1
- package/dist/types/models/IFoafAgent.d.ts +1 -6
- package/dist/types/models/IFoafDocument.d.ts +1 -6
- package/dist/types/models/IFoafGroup.d.ts +0 -6
- package/dist/types/models/IFoafImage.d.ts +1 -6
- package/dist/types/models/IFoafOrganization.d.ts +0 -6
- package/dist/types/models/IFoafPerson.d.ts +0 -6
- package/docs/changelog.md +14 -0
- package/docs/reference/index.md +0 -6
- package/package.json +3 -3
- package/docs/reference/type-aliases/IFoafAgentWithAliases.md +0 -12
- package/docs/reference/type-aliases/IFoafDocumentWithAliases.md +0 -12
- package/docs/reference/type-aliases/IFoafGroupWithAliases.md +0 -12
- package/docs/reference/type-aliases/IFoafImageWithAliases.md +0 -12
- package/docs/reference/type-aliases/IFoafOrganizationWithAliases.md +0 -12
- package/docs/reference/type-aliases/IFoafPersonWithAliases.md +0 -12
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IFoafAgent.js","sourceRoot":"","sources":["../../../src/models/IFoafAgent.ts"],"names":[],"mappings":"","sourcesContent":["// Copyright 2025 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport type { ObjectOrArray } from \"@twin.org/core\";\nimport type { IJsonLdNodeObject
|
|
1
|
+
{"version":3,"file":"IFoafAgent.js","sourceRoot":"","sources":["../../../src/models/IFoafAgent.ts"],"names":[],"mappings":"","sourcesContent":["// Copyright 2025 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport type { ObjectOrArray } from \"@twin.org/core\";\nimport type { IJsonLdNodeObject } from \"@twin.org/data-json-ld\";\nimport type { FoafContextType } from \"./foafContextType.js\";\nimport type { FoafTypes } from \"./foafTypes.js\";\nimport type { IFoafBaseObject } from \"./IFoafBaseObject.js\";\nimport type { IFoafDocument } from \"./IFoafDocument.js\";\n\n/**\n * A FOAF Agent.\n * @see http://xmlns.com/foaf/0.1/\n */\nexport interface IFoafAgent extends IFoafBaseObject {\n\t/**\n\t * The LD Context.\n\t */\n\t\"@context\"?: FoafContextType;\n\n\t/**\n\t * Type.\n\t */\n\t\"@type\":\n\t\t| typeof FoafTypes.Agent\n\t\t| typeof FoafTypes.Person\n\t\t| typeof FoafTypes.Organization\n\t\t| typeof FoafTypes.Group\n\t\t| string;\n\n\t/**\n\t * The age in years of some agent.\n\t * @see http://xmlns.com/foaf/spec/#term_age\n\t */\n\tage?: number;\n\n\t/**\n\t * Something that was made by this agent.\n\t * @see http://xmlns.com/foaf/spec/#term_made\n\t */\n\tmade?: ObjectOrArray<IJsonLdNodeObject>;\n\n\t/**\n\t * A weblog of some thing (whether person, group, company etc.).\n\t * @see http://xmlns.com/foaf/spec/#term_weblog\n\t */\n\tweblog?: IFoafDocument;\n\n\t/**\n\t * An OpenID for an agent.\n\t * @see http://xmlns.com/foaf/spec/#term_openid\n\t */\n\topenid?: IFoafDocument;\n\n\t/**\n\t * A page about a topic of interest to this person.\n\t * @see http://xmlns.com/foaf/spec/#term_interest\n\t */\n\tinterest?: IFoafDocument;\n\n\t/**\n\t * A thing of interest to this person.\n\t * @see http://xmlns.com/foaf/spec/#term_topic_interest\n\t */\n\ttopic_interest?: IJsonLdNodeObject;\n}\n"]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IFoafDocument.js","sourceRoot":"","sources":["../../../src/models/IFoafDocument.ts"],"names":[],"mappings":"","sourcesContent":["// Copyright 2025 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport type { ObjectOrArray } from \"@twin.org/core\";\nimport type { IJsonLdNodeObject
|
|
1
|
+
{"version":3,"file":"IFoafDocument.js","sourceRoot":"","sources":["../../../src/models/IFoafDocument.ts"],"names":[],"mappings":"","sourcesContent":["// Copyright 2025 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport type { ObjectOrArray } from \"@twin.org/core\";\nimport type { IJsonLdNodeObject } from \"@twin.org/data-json-ld\";\nimport type { FoafContextType } from \"./foafContextType.js\";\nimport type { FoafTypes } from \"./foafTypes.js\";\nimport type { IFoafBaseObject } from \"./IFoafBaseObject.js\";\n\n/**\n * A FOAF Document\n * @see http://xmlns.com/foaf/0.1/\n */\nexport interface IFoafDocument extends IFoafBaseObject {\n\t/**\n\t * The LD Context.\n\t */\n\t\"@context\"?: FoafContextType;\n\n\t/**\n\t * Type.\n\t */\n\t\"@type\": typeof FoafTypes.Document | typeof FoafTypes.Image;\n\n\t/**\n\t * A topic of some page or document.\n\t * @see http://xmlns.com/foaf/spec/#term_topic\n\t */\n\ttopic?: string;\n\n\t/**\n\t * The primary topic of some page or document.\n\t * @see http://xmlns.com/foaf/spec/#term_primaryTopic\n\t */\n\tprimaryTopic?: ObjectOrArray<IJsonLdNodeObject>;\n\n\t/**\n\t * A sha1sum hash, in hex.\n\t * @see http://xmlns.com/foaf/spec/#term_sha1sum\n\t */\n\tsha1?: string;\n}\n"]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IFoafGroup.js","sourceRoot":"","sources":["../../../src/models/IFoafGroup.ts"],"names":[],"mappings":"","sourcesContent":["// Copyright 2025 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport type { ObjectOrArray } from \"@twin.org/core\";\nimport type {
|
|
1
|
+
{"version":3,"file":"IFoafGroup.js","sourceRoot":"","sources":["../../../src/models/IFoafGroup.ts"],"names":[],"mappings":"","sourcesContent":["// Copyright 2025 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport type { ObjectOrArray } from \"@twin.org/core\";\nimport type { FoafContextType } from \"./foafContextType.js\";\nimport type { FoafTypes } from \"./foafTypes.js\";\nimport type { IFoafAgent } from \"./IFoafAgent.js\";\n\n/**\n * A FOAF Group.\n * @see http://xmlns.com/foaf/0.1/\n */\nexport interface IFoafGroup extends IFoafAgent {\n\t/**\n\t * The LD Context.\n\t */\n\t\"@context\"?: FoafContextType;\n\n\t/**\n\t * Type.\n\t */\n\t\"@type\": typeof FoafTypes.Group;\n\n\t/**\n\t * Indicates a member of a Group\n\t * @see http://xmlns.com/foaf/spec/#term_member\n\t */\n\tmember?: ObjectOrArray<IFoafAgent>;\n}\n"]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IFoafImage.js","sourceRoot":"","sources":["../../../src/models/IFoafImage.ts"],"names":[],"mappings":"","sourcesContent":["// Copyright 2025 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport type { IJsonLdNodeObject
|
|
1
|
+
{"version":3,"file":"IFoafImage.js","sourceRoot":"","sources":["../../../src/models/IFoafImage.ts"],"names":[],"mappings":"","sourcesContent":["// Copyright 2025 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport type { IJsonLdNodeObject } from \"@twin.org/data-json-ld\";\nimport type { FoafContextType } from \"./foafContextType.js\";\nimport type { FoafTypes } from \"./foafTypes.js\";\nimport type { IFoafDocument } from \"./IFoafDocument.js\";\n\n/**\n * A FOAF image.\n * @see http://xmlns.com/foaf/0.1/\n */\nexport interface IFoafImage extends IFoafDocument {\n\t/**\n\t * The LD Context.\n\t *\n\t */\n\t\"@context\"?: FoafContextType;\n\n\t/**\n\t * Type.\n\t */\n\t\"@type\": typeof FoafTypes.Image;\n\n\t/**\n\t * A thing depicted in this representation.\n\t * @see http://xmlns.com/foaf/spec/#term_depicts\n\t */\n\tdepicts?: IJsonLdNodeObject;\n\n\t/**\n\t * A derived thumbnail image.\n\t * @see http://xmlns.com/foaf/spec/#term_thumbnail\n\t */\n\tthumbnail?: IFoafImage;\n}\n"]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IFoafOrganization.js","sourceRoot":"","sources":["../../../src/models/IFoafOrganization.ts"],"names":[],"mappings":"","sourcesContent":["// Copyright 2025 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport type {
|
|
1
|
+
{"version":3,"file":"IFoafOrganization.js","sourceRoot":"","sources":["../../../src/models/IFoafOrganization.ts"],"names":[],"mappings":"","sourcesContent":["// Copyright 2025 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport type { FoafContextType } from \"./foafContextType.js\";\nimport type { FoafTypes } from \"./foafTypes.js\";\nimport type { IFoafAgent } from \"./IFoafAgent.js\";\n\n/**\n * A FOAF Organization.\n * @see http://xmlns.com/foaf/0.1/\n */\nexport interface IFoafOrganization extends IFoafAgent {\n\t/**\n\t * The LD Context.\n\t */\n\t\"@context\"?: FoafContextType;\n\n\t/**\n\t * Type.\n\t */\n\t\"@type\": typeof FoafTypes.Organization;\n}\n"]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IFoafPerson.js","sourceRoot":"","sources":["../../../src/models/IFoafPerson.ts"],"names":[],"mappings":"","sourcesContent":["// Copyright 2025 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport type { ObjectOrArray } from \"@twin.org/core\";\nimport type {
|
|
1
|
+
{"version":3,"file":"IFoafPerson.js","sourceRoot":"","sources":["../../../src/models/IFoafPerson.ts"],"names":[],"mappings":"","sourcesContent":["// Copyright 2025 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport type { ObjectOrArray } from \"@twin.org/core\";\nimport type { FoafContextType } from \"./foafContextType.js\";\nimport type { FoafTypes } from \"./foafTypes.js\";\nimport type { IFoafAgent } from \"./IFoafAgent.js\";\nimport type { IFoafImage } from \"./IFoafImage.js\";\n\n/**\n * A FOAF Person.\n * @see http://xmlns.com/foaf/0.1/\n */\nexport interface IFoafPerson extends IFoafAgent {\n\t/**\n\t * The LD Context.\n\t */\n\t\"@context\"?: FoafContextType;\n\n\t/**\n\t * Type.\n\t */\n\t\"@type\": typeof FoafTypes.Person;\n\n\t/**\n\t * The family name of some person.\n\t * @see http://xmlns.com/foaf/spec/#term_familyName\n\t */\n\tfamilyName?: string;\n\n\t/**\n\t * The given name of some person.\n\t * @see http://xmlns.com/foaf/spec/#term_givenName\n\t */\n\tgivenName?: string;\n\n\t/**\n\t * A person known by this person (indicating some level of reciprocated interaction between the parties).\n\t * @see http://xmlns.com/foaf/spec/#term_knows\n\t */\n\tknows?: ObjectOrArray<IFoafAgent>;\n\n\t/**\n\t * An image that can be used to represent some thing.\n\t * @see http://xmlns.com/foaf/spec/#term_img\n\t */\n\timg?: IFoafImage;\n\n\t/**\n\t * A short informal nickname characterizing an agent (includes login identifiers, IRC and other chat nicknames).\n\t * @see http://xmlns.com/foaf/spec/#term_nick\n\t */\n\tnick?: string;\n}\n"]}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { ObjectOrArray } from "@twin.org/core";
|
|
2
|
-
import type { IJsonLdNodeObject
|
|
2
|
+
import type { IJsonLdNodeObject } from "@twin.org/data-json-ld";
|
|
3
3
|
import type { FoafContextType } from "./foafContextType.js";
|
|
4
4
|
import type { FoafTypes } from "./foafTypes.js";
|
|
5
5
|
import type { IFoafBaseObject } from "./IFoafBaseObject.js";
|
|
@@ -48,8 +48,3 @@ export interface IFoafAgent extends IFoafBaseObject {
|
|
|
48
48
|
*/
|
|
49
49
|
topic_interest?: IJsonLdNodeObject;
|
|
50
50
|
}
|
|
51
|
-
/**
|
|
52
|
-
* A FOAF Agent with FOAF-prefixed aliases for non-JSON-LD keys.
|
|
53
|
-
* This allows using either prefixed aliases (e.g., "foaf:name") when defining a FOAF Agent.
|
|
54
|
-
*/
|
|
55
|
-
export type IFoafAgentWithAliases<T extends string = "foaf"> = JsonLdObjectWithAliases<IFoafAgent, T>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { ObjectOrArray } from "@twin.org/core";
|
|
2
|
-
import type { IJsonLdNodeObject
|
|
2
|
+
import type { IJsonLdNodeObject } from "@twin.org/data-json-ld";
|
|
3
3
|
import type { FoafContextType } from "./foafContextType.js";
|
|
4
4
|
import type { FoafTypes } from "./foafTypes.js";
|
|
5
5
|
import type { IFoafBaseObject } from "./IFoafBaseObject.js";
|
|
@@ -32,8 +32,3 @@ export interface IFoafDocument extends IFoafBaseObject {
|
|
|
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>;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import type { ObjectOrArray } from "@twin.org/core";
|
|
2
|
-
import type { JsonLdObjectWithAliases } from "@twin.org/data-json-ld";
|
|
3
2
|
import type { FoafContextType } from "./foafContextType.js";
|
|
4
3
|
import type { FoafTypes } from "./foafTypes.js";
|
|
5
4
|
import type { IFoafAgent } from "./IFoafAgent.js";
|
|
@@ -22,8 +21,3 @@ export interface IFoafGroup extends IFoafAgent {
|
|
|
22
21
|
*/
|
|
23
22
|
member?: ObjectOrArray<IFoafAgent>;
|
|
24
23
|
}
|
|
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,4 +1,4 @@
|
|
|
1
|
-
import type { IJsonLdNodeObject
|
|
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
4
|
import type { IFoafDocument } from "./IFoafDocument.js";
|
|
@@ -27,8 +27,3 @@ export interface IFoafImage extends IFoafDocument {
|
|
|
27
27
|
*/
|
|
28
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>;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import type { JsonLdObjectWithAliases } from "@twin.org/data-json-ld";
|
|
2
1
|
import type { FoafContextType } from "./foafContextType.js";
|
|
3
2
|
import type { FoafTypes } from "./foafTypes.js";
|
|
4
3
|
import type { IFoafAgent } from "./IFoafAgent.js";
|
|
@@ -16,8 +15,3 @@ export interface IFoafOrganization extends IFoafAgent {
|
|
|
16
15
|
*/
|
|
17
16
|
"@type": typeof FoafTypes.Organization;
|
|
18
17
|
}
|
|
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,5 +1,4 @@
|
|
|
1
1
|
import type { ObjectOrArray } from "@twin.org/core";
|
|
2
|
-
import type { JsonLdObjectWithAliases } from "@twin.org/data-json-ld";
|
|
3
2
|
import type { FoafContextType } from "./foafContextType.js";
|
|
4
3
|
import type { FoafTypes } from "./foafTypes.js";
|
|
5
4
|
import type { IFoafAgent } from "./IFoafAgent.js";
|
|
@@ -43,8 +42,3 @@ export interface IFoafPerson extends IFoafAgent {
|
|
|
43
42
|
*/
|
|
44
43
|
nick?: string;
|
|
45
44
|
}
|
|
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>;
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.3-next.64](https://github.com/iotaledger/twin-standards/compare/standards-foaf-v0.0.3-next.63...standards-foaf-v0.0.3-next.64) (2026-06-01)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Miscellaneous Chores
|
|
7
|
+
|
|
8
|
+
* **standards-foaf:** Synchronize repo versions
|
|
9
|
+
|
|
10
|
+
## [0.0.3-next.63](https://github.com/iotaledger/twin-standards/compare/standards-foaf-v0.0.3-next.62...standards-foaf-v0.0.3-next.63) (2026-05-19)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* update dependencies ([e422ed3](https://github.com/iotaledger/twin-standards/commit/e422ed351fb09e2deea5ef741326c37b0802af3a))
|
|
16
|
+
|
|
3
17
|
## [0.0.3-next.62](https://github.com/iotaledger/twin-standards/compare/standards-foaf-v0.0.3-next.61...standards-foaf-v0.0.3-next.62) (2026-05-18)
|
|
4
18
|
|
|
5
19
|
|
package/docs/reference/index.md
CHANGED
|
@@ -16,12 +16,6 @@
|
|
|
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)
|
|
25
19
|
- [FoafContextType](type-aliases/FoafContextType.md)
|
|
26
20
|
- [FoafContexts](type-aliases/FoafContexts.md)
|
|
27
21
|
- [FoafTypes](type-aliases/FoafTypes.md)
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/standards-foaf",
|
|
3
|
-
"version": "0.0.3-next.
|
|
3
|
+
"version": "0.0.3-next.64",
|
|
4
4
|
"description": "Data models for the FOAF vocabulary.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
|
-
"url": "git+https://github.com/iotaledger/standards.git",
|
|
7
|
+
"url": "git+https://github.com/iotaledger/twin-standards.git",
|
|
8
8
|
"directory": "packages/standards-foaf"
|
|
9
9
|
},
|
|
10
10
|
"author": "martyn.janes@iota.org",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"foaf"
|
|
47
47
|
],
|
|
48
48
|
"bugs": {
|
|
49
|
-
"url": "git+https://github.com/iotaledger/standards/issues"
|
|
49
|
+
"url": "git+https://github.com/iotaledger/twin-standards/issues"
|
|
50
50
|
},
|
|
51
51
|
"homepage": "https://twindev.org"
|
|
52
52
|
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
# Type Alias: IFoafAgentWithAliases\<T\>
|
|
2
|
-
|
|
3
|
-
> **IFoafAgentWithAliases**\<`T`\> = `JsonLdObjectWithAliases`\<[`IFoafAgent`](../interfaces/IFoafAgent.md), `T`\>
|
|
4
|
-
|
|
5
|
-
A FOAF Agent with FOAF-prefixed aliases for non-JSON-LD keys.
|
|
6
|
-
This allows using either prefixed aliases (e.g., "foaf:name") when defining a FOAF Agent.
|
|
7
|
-
|
|
8
|
-
## Type Parameters
|
|
9
|
-
|
|
10
|
-
### T
|
|
11
|
-
|
|
12
|
-
`T` *extends* `string` = `"foaf"`
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
# Type Alias: IFoafDocumentWithAliases\<T\>
|
|
2
|
-
|
|
3
|
-
> **IFoafDocumentWithAliases**\<`T`\> = `JsonLdObjectWithAliases`\<[`IFoafDocument`](../interfaces/IFoafDocument.md), `T`\>
|
|
4
|
-
|
|
5
|
-
A FOAF Document with FOAF-prefixed aliases for non-JSON-LD keys.
|
|
6
|
-
This allows using either prefixed aliases (e.g., "foaf:name") when defining a FOAF Document.
|
|
7
|
-
|
|
8
|
-
## Type Parameters
|
|
9
|
-
|
|
10
|
-
### T
|
|
11
|
-
|
|
12
|
-
`T` *extends* `string` = `"foaf"`
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
# Type Alias: IFoafGroupWithAliases\<T\>
|
|
2
|
-
|
|
3
|
-
> **IFoafGroupWithAliases**\<`T`\> = `JsonLdObjectWithAliases`\<[`IFoafGroup`](../interfaces/IFoafGroup.md), `T`\>
|
|
4
|
-
|
|
5
|
-
A FOAF Group with FOAF-prefixed aliases for non-JSON-LD keys.
|
|
6
|
-
This allows using either prefixed aliases (e.g., "foaf:name") when defining a FOAF Group.
|
|
7
|
-
|
|
8
|
-
## Type Parameters
|
|
9
|
-
|
|
10
|
-
### T
|
|
11
|
-
|
|
12
|
-
`T` *extends* `string` = `"foaf"`
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
# Type Alias: IFoafImageWithAliases\<T\>
|
|
2
|
-
|
|
3
|
-
> **IFoafImageWithAliases**\<`T`\> = `JsonLdObjectWithAliases`\<[`IFoafImage`](../interfaces/IFoafImage.md), `T`\>
|
|
4
|
-
|
|
5
|
-
A FOAF Image with FOAF-prefixed aliases for non-JSON-LD keys.
|
|
6
|
-
This allows using either prefixed aliases (e.g., "foaf:name") when defining a FOAF Image.
|
|
7
|
-
|
|
8
|
-
## Type Parameters
|
|
9
|
-
|
|
10
|
-
### T
|
|
11
|
-
|
|
12
|
-
`T` *extends* `string` = `"foaf"`
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
# Type Alias: IFoafOrganizationWithAliases\<T\>
|
|
2
|
-
|
|
3
|
-
> **IFoafOrganizationWithAliases**\<`T`\> = `JsonLdObjectWithAliases`\<[`IFoafOrganization`](../interfaces/IFoafOrganization.md), `T`\>
|
|
4
|
-
|
|
5
|
-
A FOAF Organization with FOAF-prefixed aliases for non-JSON-LD keys.
|
|
6
|
-
This allows using either prefixed aliases (e.g., "foaf:name") when defining a FOAF Organization.
|
|
7
|
-
|
|
8
|
-
## Type Parameters
|
|
9
|
-
|
|
10
|
-
### T
|
|
11
|
-
|
|
12
|
-
`T` *extends* `string` = `"foaf"`
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
# Type Alias: IFoafPersonWithAliases\<T\>
|
|
2
|
-
|
|
3
|
-
> **IFoafPersonWithAliases**\<`T`\> = `JsonLdObjectWithAliases`\<[`IFoafPerson`](../interfaces/IFoafPerson.md), `T`\>
|
|
4
|
-
|
|
5
|
-
A FOAF Person with FOAF-prefixed aliases for non-JSON-LD keys.
|
|
6
|
-
This allows using either prefixed aliases (e.g., "foaf:name") when defining a FOAF Person.
|
|
7
|
-
|
|
8
|
-
## Type Parameters
|
|
9
|
-
|
|
10
|
-
### T
|
|
11
|
-
|
|
12
|
-
`T` *extends* `string` = `"foaf"`
|