@twin.org/standards-w3c-dcat 0.0.3-next.63 → 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.
@@ -1 +1 @@
1
- {"version":3,"file":"IDcatResourceBase.js","sourceRoot":"","sources":["../../../src/models/IDcatResourceBase.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 { IFoafAgentWithAliases } from \"@twin.org/standards-foaf\";\nimport type { IOdrlPolicy } from \"@twin.org/standards-w3c-odrl\";\nimport type { DcatClasses } from \"./dcatClasses.js\";\nimport type { IDcatRelationship } from \"./IDcatRelationship.js\";\n\n/**\n * Base interface for DCAT catalogued resources without JSON-LD context.\n * This is the context-free variant of IDcatResource, intended for embedding\n * resources inline within other objects where the context is provided by the enclosing document.\n * @see https://www.w3.org/TR/vocab-dcat-3/#Class:Resource\n */\nexport interface IDcatResourceBase {\n\t/**\n\t * The type of the resource.\n\t * Typically \"Catalog\", \"Dataset\", \"DataService\", \"DatasetSeries\", or the base \"Resource\".\n\t */\n\t\"@type\":\n\t\t| typeof DcatClasses.Resource\n\t\t| typeof DcatClasses.Dataset\n\t\t| typeof DcatClasses.DataService\n\t\t| typeof DcatClasses.Catalog\n\t\t| typeof DcatClasses.DatasetSeries;\n\n\t/**\n\t * The unique identifier for the resource.\n\t */\n\t\"@id\"?: string;\n\n\t/**\n\t * A name given to the resource.\n\t * @see https://www.w3.org/TR/vocab-dcat-3/#Property:resource_title\n\t */\n\t\"dcterms:title\"?: ObjectOrArray<string>;\n\n\t/**\n\t * A free-text account of the resource.\n\t * @see https://www.w3.org/TR/vocab-dcat-3/#Property:resource_description\n\t */\n\t\"dcterms:description\"?: ObjectOrArray<string>;\n\n\t/**\n\t * A unique identifier of the resource.\n\t * @see https://www.w3.org/TR/vocab-dcat-3/#Property:resource_identifier\n\t */\n\t\"dcterms:identifier\"?: ObjectOrArray<string>;\n\n\t/**\n\t * Date of formal issuance (publication) of the resource.\n\t * @json-schema format:date-time\n\t * @see https://www.w3.org/TR/vocab-dcat-3/#Property:resource_release_date\n\t */\n\t\"dcterms:issued\"?: string;\n\n\t/**\n\t * Most recent date on which the resource was changed, updated or modified.\n\t * @json-schema format:date-time\n\t * @see https://www.w3.org/TR/vocab-dcat-3/#Property:resource_update_date\n\t */\n\t\"dcterms:modified\"?: string;\n\n\t/**\n\t * A language of the resource.\n\t * @see https://www.w3.org/TR/vocab-dcat-3/#Property:resource_language\n\t */\n\t\"dcterms:language\"?: ObjectOrArray<string>;\n\n\t/**\n\t * An entity responsible for making the resource available.\n\t * @see https://www.w3.org/TR/vocab-dcat-3/#Property:resource_publisher\n\t */\n\t\"dcterms:publisher\"?: IFoafAgentWithAliases | string;\n\n\t/**\n\t * An entity responsible for producing the resource.\n\t * @see https://www.w3.org/TR/vocab-dcat-3/#Property:resource_creator\n\t */\n\t\"dcterms:creator\"?: IFoafAgentWithAliases | string;\n\n\t/**\n\t * Information about who can access the resource or an indication of its security status.\n\t * @see https://www.w3.org/TR/vocab-dcat-3/#Property:resource_access_rights\n\t */\n\t\"dcterms:accessRights\"?: IJsonLdNodeObject | string;\n\n\t/**\n\t * A legal document under which the resource is made available.\n\t * @see https://www.w3.org/TR/vocab-dcat-3/#Property:resource_license\n\t */\n\t\"dcterms:license\"?: IJsonLdNodeObject | string;\n\n\t/**\n\t * Information about rights held in and over the resource.\n\t * @see https://www.w3.org/TR/vocab-dcat-3/#Property:resource_rights\n\t */\n\t\"dcterms:rights\"?: IJsonLdNodeObject | string;\n\n\t/**\n\t * An established standard to which the resource conforms.\n\t * @see https://www.w3.org/TR/vocab-dcat-3/#Property:resource_conforms_to\n\t */\n\t\"dcterms:conformsTo\"?: ObjectOrArray<string>;\n\n\t/**\n\t * The nature or genre of the resource.\n\t * @see https://www.w3.org/TR/vocab-dcat-3/#Property:resource_type\n\t */\n\t\"dcterms:type\"?: string;\n\n\t/**\n\t * Relevant contact information for the catalogued resource.\n\t * @see https://www.w3.org/TR/vocab-dcat-3/#Property:resource_contact_point\n\t */\n\t\"dcat:contactPoint\"?: IJsonLdNodeObject | string;\n\n\t/**\n\t * A keyword or tag describing the resource.\n\t * @see https://www.w3.org/TR/vocab-dcat-3/#Property:resource_keyword\n\t */\n\t\"dcat:keyword\"?: ObjectOrArray<string>;\n\n\t/**\n\t * A main category of the resource. A resource can have multiple themes.\n\t * @see https://www.w3.org/TR/vocab-dcat-3/#Property:resource_theme\n\t */\n\t\"dcat:theme\"?: ObjectOrArray<string>;\n\n\t/**\n\t * A Web page that can be navigated to gain access to the resource.\n\t * @see https://www.w3.org/TR/vocab-dcat-3/#Property:resource_landing_page\n\t */\n\t\"dcat:landingPage\"?: ObjectOrArray<string>;\n\n\t/**\n\t * Link to a description of a relationship with another resource.\n\t * @see https://www.w3.org/TR/vocab-dcat-3/#Property:resource_qualified_relation\n\t */\n\t\"dcat:qualifiedRelation\"?: IDcatRelationship | string;\n\n\t/**\n\t * An ODRL conformant policy expressing the rights associated with the resource.\n\t * @see https://www.w3.org/TR/vocab-dcat-3/#Property:resource_has_policy\n\t */\n\t\"odrl:hasPolicy\"?: IOdrlPolicy;\n}\n"]}
1
+ {"version":3,"file":"IDcatResourceBase.js","sourceRoot":"","sources":["../../../src/models/IDcatResourceBase.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, JsonLdObjectWithAliases } from \"@twin.org/data-json-ld\";\nimport type { IFoafAgent } from \"@twin.org/standards-foaf\";\nimport type { IOdrlPolicy } from \"@twin.org/standards-w3c-odrl\";\nimport type { DcatClasses } from \"./dcatClasses.js\";\nimport type { IDcatRelationship } from \"./IDcatRelationship.js\";\n\n/**\n * Base interface for DCAT catalogued resources without JSON-LD context.\n * This is the context-free variant of IDcatResource, intended for embedding\n * resources inline within other objects where the context is provided by the enclosing document.\n * @see https://www.w3.org/TR/vocab-dcat-3/#Class:Resource\n */\nexport interface IDcatResourceBase {\n\t/**\n\t * The type of the resource.\n\t * Typically \"Catalog\", \"Dataset\", \"DataService\", \"DatasetSeries\", or the base \"Resource\".\n\t */\n\t\"@type\":\n\t\t| typeof DcatClasses.Resource\n\t\t| typeof DcatClasses.Dataset\n\t\t| typeof DcatClasses.DataService\n\t\t| typeof DcatClasses.Catalog\n\t\t| typeof DcatClasses.DatasetSeries;\n\n\t/**\n\t * The unique identifier for the resource.\n\t */\n\t\"@id\"?: string;\n\n\t/**\n\t * A name given to the resource.\n\t * @see https://www.w3.org/TR/vocab-dcat-3/#Property:resource_title\n\t */\n\t\"dcterms:title\"?: ObjectOrArray<string>;\n\n\t/**\n\t * A free-text account of the resource.\n\t * @see https://www.w3.org/TR/vocab-dcat-3/#Property:resource_description\n\t */\n\t\"dcterms:description\"?: ObjectOrArray<string>;\n\n\t/**\n\t * A unique identifier of the resource.\n\t * @see https://www.w3.org/TR/vocab-dcat-3/#Property:resource_identifier\n\t */\n\t\"dcterms:identifier\"?: ObjectOrArray<string>;\n\n\t/**\n\t * Date of formal issuance (publication) of the resource.\n\t * @json-schema format:date-time\n\t * @see https://www.w3.org/TR/vocab-dcat-3/#Property:resource_release_date\n\t */\n\t\"dcterms:issued\"?: string;\n\n\t/**\n\t * Most recent date on which the resource was changed, updated or modified.\n\t * @json-schema format:date-time\n\t * @see https://www.w3.org/TR/vocab-dcat-3/#Property:resource_update_date\n\t */\n\t\"dcterms:modified\"?: string;\n\n\t/**\n\t * A language of the resource.\n\t * @see https://www.w3.org/TR/vocab-dcat-3/#Property:resource_language\n\t */\n\t\"dcterms:language\"?: ObjectOrArray<string>;\n\n\t/**\n\t * An entity responsible for making the resource available.\n\t * @see https://www.w3.org/TR/vocab-dcat-3/#Property:resource_publisher\n\t */\n\t\"dcterms:publisher\"?: JsonLdObjectWithAliases<IFoafAgent, \"foaf\"> | string;\n\n\t/**\n\t * An entity responsible for producing the resource.\n\t * @see https://www.w3.org/TR/vocab-dcat-3/#Property:resource_creator\n\t */\n\t\"dcterms:creator\"?: JsonLdObjectWithAliases<IFoafAgent, \"foaf\"> | string;\n\n\t/**\n\t * Information about who can access the resource or an indication of its security status.\n\t * @see https://www.w3.org/TR/vocab-dcat-3/#Property:resource_access_rights\n\t */\n\t\"dcterms:accessRights\"?: IJsonLdNodeObject | string;\n\n\t/**\n\t * A legal document under which the resource is made available.\n\t * @see https://www.w3.org/TR/vocab-dcat-3/#Property:resource_license\n\t */\n\t\"dcterms:license\"?: IJsonLdNodeObject | string;\n\n\t/**\n\t * Information about rights held in and over the resource.\n\t * @see https://www.w3.org/TR/vocab-dcat-3/#Property:resource_rights\n\t */\n\t\"dcterms:rights\"?: IJsonLdNodeObject | string;\n\n\t/**\n\t * An established standard to which the resource conforms.\n\t * @see https://www.w3.org/TR/vocab-dcat-3/#Property:resource_conforms_to\n\t */\n\t\"dcterms:conformsTo\"?: ObjectOrArray<string>;\n\n\t/**\n\t * The nature or genre of the resource.\n\t * @see https://www.w3.org/TR/vocab-dcat-3/#Property:resource_type\n\t */\n\t\"dcterms:type\"?: string;\n\n\t/**\n\t * Relevant contact information for the catalogued resource.\n\t * @see https://www.w3.org/TR/vocab-dcat-3/#Property:resource_contact_point\n\t */\n\t\"dcat:contactPoint\"?: IJsonLdNodeObject | string;\n\n\t/**\n\t * A keyword or tag describing the resource.\n\t * @see https://www.w3.org/TR/vocab-dcat-3/#Property:resource_keyword\n\t */\n\t\"dcat:keyword\"?: ObjectOrArray<string>;\n\n\t/**\n\t * A main category of the resource. A resource can have multiple themes.\n\t * @see https://www.w3.org/TR/vocab-dcat-3/#Property:resource_theme\n\t */\n\t\"dcat:theme\"?: ObjectOrArray<string>;\n\n\t/**\n\t * A Web page that can be navigated to gain access to the resource.\n\t * @see https://www.w3.org/TR/vocab-dcat-3/#Property:resource_landing_page\n\t */\n\t\"dcat:landingPage\"?: ObjectOrArray<string>;\n\n\t/**\n\t * Link to a description of a relationship with another resource.\n\t * @see https://www.w3.org/TR/vocab-dcat-3/#Property:resource_qualified_relation\n\t */\n\t\"dcat:qualifiedRelation\"?: IDcatRelationship | string;\n\n\t/**\n\t * An ODRL conformant policy expressing the rights associated with the resource.\n\t * @see https://www.w3.org/TR/vocab-dcat-3/#Property:resource_has_policy\n\t */\n\t\"odrl:hasPolicy\"?: IOdrlPolicy;\n}\n"]}
@@ -98,7 +98,7 @@
98
98
  "dcterms:publisher": {
99
99
  "anyOf": [
100
100
  {
101
- "$ref": "https://schema.twindev.org/w3c-dcat/FoafAgentWithAliases"
101
+ "$ref": "https://schema.twindev.org/json-ld/JsonLdObjectWithAliases"
102
102
  },
103
103
  {
104
104
  "type": "string"
@@ -109,7 +109,7 @@
109
109
  "dcterms:creator": {
110
110
  "anyOf": [
111
111
  {
112
- "$ref": "https://schema.twindev.org/w3c-dcat/FoafAgentWithAliases"
112
+ "$ref": "https://schema.twindev.org/json-ld/JsonLdObjectWithAliases"
113
113
  },
114
114
  {
115
115
  "type": "string"
@@ -1,6 +1,6 @@
1
1
  import type { ObjectOrArray } from "@twin.org/core";
2
- import type { IJsonLdNodeObject } from "@twin.org/data-json-ld";
3
- import type { IFoafAgentWithAliases } from "@twin.org/standards-foaf";
2
+ import type { IJsonLdNodeObject, JsonLdObjectWithAliases } from "@twin.org/data-json-ld";
3
+ import type { IFoafAgent } from "@twin.org/standards-foaf";
4
4
  import type { IOdrlPolicy } from "@twin.org/standards-w3c-odrl";
5
5
  import type { DcatClasses } from "./dcatClasses.js";
6
6
  import type { IDcatRelationship } from "./IDcatRelationship.js";
@@ -56,12 +56,12 @@ export interface IDcatResourceBase {
56
56
  * An entity responsible for making the resource available.
57
57
  * @see https://www.w3.org/TR/vocab-dcat-3/#Property:resource_publisher
58
58
  */
59
- "dcterms:publisher"?: IFoafAgentWithAliases | string;
59
+ "dcterms:publisher"?: JsonLdObjectWithAliases<IFoafAgent, "foaf"> | string;
60
60
  /**
61
61
  * An entity responsible for producing the resource.
62
62
  * @see https://www.w3.org/TR/vocab-dcat-3/#Property:resource_creator
63
63
  */
64
- "dcterms:creator"?: IFoafAgentWithAliases | string;
64
+ "dcterms:creator"?: JsonLdObjectWithAliases<IFoafAgent, "foaf"> | string;
65
65
  /**
66
66
  * Information about who can access the resource or an indication of its security status.
67
67
  * @see https://www.w3.org/TR/vocab-dcat-3/#Property:resource_access_rights
package/docs/changelog.md CHANGED
@@ -1,5 +1,24 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.0.3-next.64](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.63...standards-w3c-dcat-v0.0.3-next.64) (2026-06-01)
4
+
5
+
6
+ ### Miscellaneous Chores
7
+
8
+ * **standards-w3c-dcat:** Synchronize repo versions
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * The following workspace dependencies were updated
14
+ * dependencies
15
+ * @twin.org/standards-dublin-core bumped from 0.0.3-next.63 to 0.0.3-next.64
16
+ * @twin.org/standards-foaf bumped from 0.0.3-next.63 to 0.0.3-next.64
17
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.63 to 0.0.3-next.64
18
+ * @twin.org/standards-w3c-vcard bumped from 0.0.3-next.63 to 0.0.3-next.64
19
+ * devDependencies
20
+ * @twin.org/standards-ld-contexts bumped from 0.0.3-next.63 to 0.0.3-next.64
21
+
3
22
  ## [0.0.3-next.63](https://github.com/iotaledger/twin-standards/compare/standards-w3c-dcat-v0.0.3-next.62...standards-w3c-dcat-v0.0.3-next.63) (2026-05-19)
4
23
 
5
24
 
@@ -384,7 +384,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_language
384
384
 
385
385
  ### dcterms:publisher? {#dctermspublisher}
386
386
 
387
- > `optional` **dcterms:publisher?**: `string` \| `IFoafAgentWithAliases`
387
+ > `optional` **dcterms:publisher?**: `string` \| `JsonLdObjectWithAliases`\<`IFoafAgent`, `"foaf"`\>
388
388
 
389
389
  An entity responsible for making the resource available.
390
390
 
@@ -400,7 +400,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_publisher
400
400
 
401
401
  ### dcterms:creator? {#dctermscreator}
402
402
 
403
- > `optional` **dcterms:creator?**: `string` \| `IFoafAgentWithAliases`
403
+ > `optional` **dcterms:creator?**: `string` \| `JsonLdObjectWithAliases`\<`IFoafAgent`, `"foaf"`\>
404
404
 
405
405
  An entity responsible for producing the resource.
406
406
 
@@ -353,7 +353,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_language
353
353
 
354
354
  ### dcterms:publisher? {#dctermspublisher}
355
355
 
356
- > `optional` **dcterms:publisher?**: `string` \| `IFoafAgentWithAliases`
356
+ > `optional` **dcterms:publisher?**: `string` \| `JsonLdObjectWithAliases`\<`IFoafAgent`, `"foaf"`\>
357
357
 
358
358
  An entity responsible for making the resource available.
359
359
 
@@ -369,7 +369,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_publisher
369
369
 
370
370
  ### dcterms:creator? {#dctermscreator}
371
371
 
372
- > `optional` **dcterms:creator?**: `string` \| `IFoafAgentWithAliases`
372
+ > `optional` **dcterms:creator?**: `string` \| `JsonLdObjectWithAliases`\<`IFoafAgent`, `"foaf"`\>
373
373
 
374
374
  An entity responsible for producing the resource.
375
375
 
@@ -193,7 +193,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_language
193
193
 
194
194
  ### dcterms:publisher? {#dctermspublisher}
195
195
 
196
- > `optional` **dcterms:publisher?**: `string` \| `IFoafAgentWithAliases`
196
+ > `optional` **dcterms:publisher?**: `string` \| `JsonLdObjectWithAliases`\<`IFoafAgent`, `"foaf"`\>
197
197
 
198
198
  An entity responsible for making the resource available.
199
199
 
@@ -209,7 +209,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_publisher
209
209
 
210
210
  ### dcterms:creator? {#dctermscreator}
211
211
 
212
- > `optional` **dcterms:creator?**: `string` \| `IFoafAgentWithAliases`
212
+ > `optional` **dcterms:creator?**: `string` \| `JsonLdObjectWithAliases`\<`IFoafAgent`, `"foaf"`\>
213
213
 
214
214
  An entity responsible for producing the resource.
215
215
 
@@ -177,7 +177,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_language
177
177
 
178
178
  ### dcterms:publisher? {#dctermspublisher}
179
179
 
180
- > `optional` **dcterms:publisher?**: `string` \| `IFoafAgentWithAliases`
180
+ > `optional` **dcterms:publisher?**: `string` \| `JsonLdObjectWithAliases`\<`IFoafAgent`, `"foaf"`\>
181
181
 
182
182
  An entity responsible for making the resource available.
183
183
 
@@ -193,7 +193,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_publisher
193
193
 
194
194
  ### dcterms:creator? {#dctermscreator}
195
195
 
196
- > `optional` **dcterms:creator?**: `string` \| `IFoafAgentWithAliases`
196
+ > `optional` **dcterms:creator?**: `string` \| `JsonLdObjectWithAliases`\<`IFoafAgent`, `"foaf"`\>
197
197
 
198
198
  An entity responsible for producing the resource.
199
199
 
@@ -277,7 +277,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_language
277
277
 
278
278
  ### dcterms:publisher? {#dctermspublisher}
279
279
 
280
- > `optional` **dcterms:publisher?**: `string` \| `IFoafAgentWithAliases`
280
+ > `optional` **dcterms:publisher?**: `string` \| `JsonLdObjectWithAliases`\<`IFoafAgent`, `"foaf"`\>
281
281
 
282
282
  An entity responsible for making the resource available.
283
283
 
@@ -293,7 +293,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_publisher
293
293
 
294
294
  ### dcterms:creator? {#dctermscreator}
295
295
 
296
- > `optional` **dcterms:creator?**: `string` \| `IFoafAgentWithAliases`
296
+ > `optional` **dcterms:creator?**: `string` \| `JsonLdObjectWithAliases`\<`IFoafAgent`, `"foaf"`\>
297
297
 
298
298
  An entity responsible for producing the resource.
299
299
 
@@ -238,7 +238,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_language
238
238
 
239
239
  ### dcterms:publisher? {#dctermspublisher}
240
240
 
241
- > `optional` **dcterms:publisher?**: `string` \| `IFoafAgentWithAliases`
241
+ > `optional` **dcterms:publisher?**: `string` \| `JsonLdObjectWithAliases`\<`IFoafAgent`, `"foaf"`\>
242
242
 
243
243
  An entity responsible for making the resource available.
244
244
 
@@ -254,7 +254,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_publisher
254
254
 
255
255
  ### dcterms:creator? {#dctermscreator}
256
256
 
257
- > `optional` **dcterms:creator?**: `string` \| `IFoafAgentWithAliases`
257
+ > `optional` **dcterms:creator?**: `string` \| `JsonLdObjectWithAliases`\<`IFoafAgent`, `"foaf"`\>
258
258
 
259
259
  An entity responsible for producing the resource.
260
260
 
@@ -324,7 +324,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_language
324
324
 
325
325
  ### dcterms:publisher? {#dctermspublisher}
326
326
 
327
- > `optional` **dcterms:publisher?**: `string` \| `IFoafAgentWithAliases`
327
+ > `optional` **dcterms:publisher?**: `string` \| `JsonLdObjectWithAliases`\<`IFoafAgent`, `"foaf"`\>
328
328
 
329
329
  An entity responsible for making the resource available.
330
330
 
@@ -340,7 +340,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_publisher
340
340
 
341
341
  ### dcterms:creator? {#dctermscreator}
342
342
 
343
- > `optional` **dcterms:creator?**: `string` \| `IFoafAgentWithAliases`
343
+ > `optional` **dcterms:creator?**: `string` \| `JsonLdObjectWithAliases`\<`IFoafAgent`, `"foaf"`\>
344
344
 
345
345
  An entity responsible for producing the resource.
346
346
 
@@ -144,7 +144,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_language
144
144
 
145
145
  ### dcterms:publisher? {#dctermspublisher}
146
146
 
147
- > `optional` **dcterms:publisher?**: `string` \| `IFoafAgentWithAliases`
147
+ > `optional` **dcterms:publisher?**: `string` \| `JsonLdObjectWithAliases`\<`IFoafAgent`, `"foaf"`\>
148
148
 
149
149
  An entity responsible for making the resource available.
150
150
 
@@ -160,7 +160,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_publisher
160
160
 
161
161
  ### dcterms:creator? {#dctermscreator}
162
162
 
163
- > `optional` **dcterms:creator?**: `string` \| `IFoafAgentWithAliases`
163
+ > `optional` **dcterms:creator?**: `string` \| `JsonLdObjectWithAliases`\<`IFoafAgent`, `"foaf"`\>
164
164
 
165
165
  An entity responsible for producing the resource.
166
166
 
@@ -107,7 +107,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_language
107
107
 
108
108
  ### dcterms:publisher? {#dctermspublisher}
109
109
 
110
- > `optional` **dcterms:publisher?**: `string` \| `IFoafAgentWithAliases`
110
+ > `optional` **dcterms:publisher?**: `string` \| `JsonLdObjectWithAliases`\<`IFoafAgent`, `"foaf"`\>
111
111
 
112
112
  An entity responsible for making the resource available.
113
113
 
@@ -119,7 +119,7 @@ https://www.w3.org/TR/vocab-dcat-3/#Property:resource_publisher
119
119
 
120
120
  ### dcterms:creator? {#dctermscreator}
121
121
 
122
- > `optional` **dcterms:creator?**: `string` \| `IFoafAgentWithAliases`
122
+ > `optional` **dcterms:creator?**: `string` \| `JsonLdObjectWithAliases`\<`IFoafAgent`, `"foaf"`\>
123
123
 
124
124
  An entity responsible for producing the resource.
125
125
 
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@twin.org/standards-w3c-dcat",
3
- "version": "0.0.3-next.63",
3
+ "version": "0.0.3-next.64",
4
4
  "description": "Data models for the W3C Data Catalog 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-w3c-dcat"
9
9
  },
10
10
  "author": "cornel.filip@iota.org",
@@ -15,10 +15,10 @@
15
15
  },
16
16
  "dependencies": {
17
17
  "@twin.org/data-json-ld": "next",
18
- "@twin.org/standards-dublin-core": "0.0.3-next.63",
19
- "@twin.org/standards-foaf": "0.0.3-next.63",
20
- "@twin.org/standards-w3c-odrl": "0.0.3-next.63",
21
- "@twin.org/standards-w3c-vcard": "0.0.3-next.63",
18
+ "@twin.org/standards-dublin-core": "0.0.3-next.64",
19
+ "@twin.org/standards-foaf": "0.0.3-next.64",
20
+ "@twin.org/standards-w3c-odrl": "0.0.3-next.64",
21
+ "@twin.org/standards-w3c-vcard": "0.0.3-next.64",
22
22
  "@twin.org/web": "next"
23
23
  },
24
24
  "main": "./dist/es/index.js",
@@ -51,7 +51,7 @@
51
51
  "metadata"
52
52
  ],
53
53
  "bugs": {
54
- "url": "git+https://github.com/iotaledger/standards/issues"
54
+ "url": "git+https://github.com/iotaledger/twin-standards/issues"
55
55
  },
56
56
  "homepage": "https://twindev.org"
57
57
  }