@twin.org/standards-w3c-activity-streams 0.0.3-next.50 → 0.0.3-next.51
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/README.md +1 -1
- package/dist/es/models/IActivityStreamsActivity.js.map +1 -1
- package/dist/es/models/IActivityStreamsLink.js.map +1 -1
- package/dist/es/models/IActivityStreamsObject.js.map +1 -1
- package/dist/es/models/IActivityStreamsTombstone.js.map +1 -1
- package/dist/es/schemas/ActivityStreamsActivity.json +12 -6
- package/dist/es/schemas/ActivityStreamsActor.json +12 -6
- package/dist/es/schemas/ActivityStreamsApplication.json +12 -6
- package/dist/es/schemas/ActivityStreamsArticle.json +12 -6
- package/dist/es/schemas/ActivityStreamsAudio.json +12 -6
- package/dist/es/schemas/ActivityStreamsCollection.json +12 -6
- package/dist/es/schemas/ActivityStreamsCollectionPage.json +12 -6
- package/dist/es/schemas/ActivityStreamsDocument.json +12 -6
- package/dist/es/schemas/ActivityStreamsEvent.json +12 -6
- package/dist/es/schemas/ActivityStreamsGroup.json +12 -6
- package/dist/es/schemas/ActivityStreamsImage.json +12 -6
- package/dist/es/schemas/ActivityStreamsIntransitiveActivity.json +12 -6
- package/dist/es/schemas/ActivityStreamsLink.json +2 -1
- package/dist/es/schemas/ActivityStreamsMention.json +2 -1
- package/dist/es/schemas/ActivityStreamsNote.json +12 -6
- package/dist/es/schemas/ActivityStreamsObject.json +12 -6
- package/dist/es/schemas/ActivityStreamsOrderedCollection.json +12 -6
- package/dist/es/schemas/ActivityStreamsOrderedCollectionPage.json +12 -6
- package/dist/es/schemas/ActivityStreamsOrganization.json +12 -6
- package/dist/es/schemas/ActivityStreamsPage.json +12 -6
- package/dist/es/schemas/ActivityStreamsPerson.json +12 -6
- package/dist/es/schemas/ActivityStreamsPlace.json +12 -6
- package/dist/es/schemas/ActivityStreamsProfile.json +12 -6
- package/dist/es/schemas/ActivityStreamsRelationship.json +12 -6
- package/dist/es/schemas/ActivityStreamsService.json +12 -6
- package/dist/es/schemas/ActivityStreamsTombstone.json +14 -7
- package/dist/es/schemas/ActivityStreamsVideo.json +12 -6
- package/dist/types/models/IActivityStreamsActivity.d.ts +0 -5
- package/dist/types/models/IActivityStreamsLink.d.ts +1 -0
- package/dist/types/models/IActivityStreamsObject.d.ts +6 -0
- package/dist/types/models/IActivityStreamsTombstone.d.ts +1 -0
- package/docs/changelog.md +7 -0
- package/docs/examples.md +29 -1
- package/docs/reference/interfaces/IActivityStreamsActivity.md +16 -16
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# TWIN Standards W3C Activity Streams
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
This package provides data models for the [W3C Activity Streams vocabulary](https://www.w3.org/TR/activitystreams-core/), making activity and event data easier to exchange with shared semantics.
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IActivityStreamsActivity.js","sourceRoot":"","sources":["../../../src/models/IActivityStreamsActivity.ts"],"names":[],"mappings":"","sourcesContent":["// Copyright 2026 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport type { ObjectOrArray } from \"@twin.org/core\";\nimport type { IJsonLdLanguageMap, IJsonLdNodeObject } from \"@twin.org/data-json-ld\";\nimport type { ActivityStreamsContextType } from \"./activityStreamsContextType.js\";\nimport type { ActivityStreamsTypes } from \"./activityStreamsTypes.js\";\nimport type { IActivityStreamsObject } from \"./IActivityStreamsObject.js\";\n\n/**\n * A W3C Activity from Activity Streams.\n *\n * An `Activity` describes an action performed by an `actor` on an `object`, and\n * can optionally include a `target`, `result`, `origin`, or `instrument`.\n * @see https://www.w3.org/TR/activitystreams-core/#activities\n */\nexport interface IActivityStreamsActivity extends IActivityStreamsObject {\n\t/**\n\t * The LD Context.\n\t */\n\t\"@context\": ActivityStreamsContextType;\n\n\t/**\n\t * Activity Type.\n\t */\n\ttype: (ActivityStreamsTypes | string) | (ActivityStreamsTypes | string)[];\n\n\t/**\n\t * The generator of the Activity.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-generator\n\t */\n\tgenerator?: ObjectOrArray<string | IJsonLdNodeObject>;\n\n\t/**\n\t * The Actor behind the Activity.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-actor\n\t */\n\tactor?: ObjectOrArray<string | IJsonLdNodeObject>;\n\n\t/**\n\t * The object affected by the Activity.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object\n\t */\n\tobject?: ObjectOrArray<string | IJsonLdNodeObject>;\n\n\t/**\n\t * The target of the Activity.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-target\n\t */\n\ttarget?: ObjectOrArray<string | IJsonLdNodeObject>;\n\n\t/**\n\t * Summary of the Activity.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-summary\n\t */\n\tsummary?: string | IJsonLdLanguageMap;\n\n\t/**\n\t * Result of the Activity.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-result\n\t */\n\tresult?: ObjectOrArray<string | IJsonLdNodeObject>;\n\n\t/**\n\t * Activity's origin.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-origin\n\t */\n\torigin?: ObjectOrArray<string | IJsonLdNodeObject>;\n\n\t/**\n\t * Instrument used in the Activity.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-instrument\n\t */\n\tinstrument?: ObjectOrArray<string | IJsonLdNodeObject>;\n
|
|
1
|
+
{"version":3,"file":"IActivityStreamsActivity.js","sourceRoot":"","sources":["../../../src/models/IActivityStreamsActivity.ts"],"names":[],"mappings":"","sourcesContent":["// Copyright 2026 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport type { ObjectOrArray } from \"@twin.org/core\";\nimport type { IJsonLdLanguageMap, IJsonLdNodeObject } from \"@twin.org/data-json-ld\";\nimport type { ActivityStreamsContextType } from \"./activityStreamsContextType.js\";\nimport type { ActivityStreamsTypes } from \"./activityStreamsTypes.js\";\nimport type { IActivityStreamsObject } from \"./IActivityStreamsObject.js\";\n\n/**\n * A W3C Activity from Activity Streams.\n *\n * An `Activity` describes an action performed by an `actor` on an `object`, and\n * can optionally include a `target`, `result`, `origin`, or `instrument`.\n * @see https://www.w3.org/TR/activitystreams-core/#activities\n */\nexport interface IActivityStreamsActivity extends IActivityStreamsObject {\n\t/**\n\t * The LD Context.\n\t */\n\t\"@context\": ActivityStreamsContextType;\n\n\t/**\n\t * Activity Type.\n\t */\n\ttype: (ActivityStreamsTypes | string) | (ActivityStreamsTypes | string)[];\n\n\t/**\n\t * The generator of the Activity.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-generator\n\t */\n\tgenerator?: ObjectOrArray<string | IJsonLdNodeObject>;\n\n\t/**\n\t * The Actor behind the Activity.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-actor\n\t */\n\tactor?: ObjectOrArray<string | IJsonLdNodeObject>;\n\n\t/**\n\t * The object affected by the Activity.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object\n\t */\n\tobject?: ObjectOrArray<string | IJsonLdNodeObject>;\n\n\t/**\n\t * The target of the Activity.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-target\n\t */\n\ttarget?: ObjectOrArray<string | IJsonLdNodeObject>;\n\n\t/**\n\t * Summary of the Activity.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-summary\n\t */\n\tsummary?: string | IJsonLdLanguageMap;\n\n\t/**\n\t * Result of the Activity.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-result\n\t */\n\tresult?: ObjectOrArray<string | IJsonLdNodeObject>;\n\n\t/**\n\t * Activity's origin.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-origin\n\t */\n\torigin?: ObjectOrArray<string | IJsonLdNodeObject>;\n\n\t/**\n\t * Instrument used in the Activity.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-instrument\n\t */\n\tinstrument?: ObjectOrArray<string | IJsonLdNodeObject>;\n}\n"]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IActivityStreamsLink.js","sourceRoot":"","sources":["../../../src/models/IActivityStreamsLink.ts"],"names":[],"mappings":"","sourcesContent":["// Copyright 2026 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport type { ObjectOrArray } from \"@twin.org/core\";\nimport type { IJsonLdLanguageMap, IJsonLdNodeObject } from \"@twin.org/data-json-ld\";\nimport type { ActivityStreamsContextType } from \"./activityStreamsContextType.js\";\nimport type { ActivityStreamsLinkTypes } from \"./activityStreamsLinkTypes.js\";\n\n/**\n * A W3C Activity Streams Link.\n *\n * A `Link` is used to reference a resource by URI (via `href`) and can include\n * optional presentation metadata such as `name`, `mediaType`, `height`, and `width`.\n * @see https://www.w3.org/TR/activitystreams-core/#link\n */\nexport interface IActivityStreamsLink {\n\t/**\n\t * The LD Context.\n\t */\n\t\"@context\": ActivityStreamsContextType;\n\n\t/**\n\t * Link type.\n\t */\n\ttype: (ActivityStreamsLinkTypes | string) | (ActivityStreamsLinkTypes | string)[];\n\n\t/**\n\t * The target URI of the Link.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-href\n\t */\n\thref: string;\n\n\t/**\n\t * A natural language name for the link.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-name\n\t */\n\tname?: string | IJsonLdLanguageMap;\n\n\t/**\n\t * A language hint for the target resource.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-hreflang\n\t */\n\threflang?: string;\n\n\t/**\n\t * MIME media type of the referenced resource.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-mediatype\n\t */\n\tmediaType?: string;\n\n\t/**\n\t * Link relation value(s).\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-rel\n\t */\n\trel?: ObjectOrArray<string>;\n\n\t/**\n\t * Desired rendered height.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-height\n\t */\n\theight?: number;\n\n\t/**\n\t * Desired rendered width.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-width\n\t */\n\twidth?: number;\n\n\t/**\n\t * Preview of the link.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-preview\n\t */\n\tpreview?: ObjectOrArray<string | IJsonLdNodeObject>;\n}\n"]}
|
|
1
|
+
{"version":3,"file":"IActivityStreamsLink.js","sourceRoot":"","sources":["../../../src/models/IActivityStreamsLink.ts"],"names":[],"mappings":"","sourcesContent":["// Copyright 2026 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport type { ObjectOrArray } from \"@twin.org/core\";\nimport type { IJsonLdLanguageMap, IJsonLdNodeObject } from \"@twin.org/data-json-ld\";\nimport type { ActivityStreamsContextType } from \"./activityStreamsContextType.js\";\nimport type { ActivityStreamsLinkTypes } from \"./activityStreamsLinkTypes.js\";\n\n/**\n * A W3C Activity Streams Link.\n *\n * A `Link` is used to reference a resource by URI (via `href`) and can include\n * optional presentation metadata such as `name`, `mediaType`, `height`, and `width`.\n * @see https://www.w3.org/TR/activitystreams-core/#link\n */\nexport interface IActivityStreamsLink {\n\t/**\n\t * The LD Context.\n\t */\n\t\"@context\": ActivityStreamsContextType;\n\n\t/**\n\t * Link type.\n\t */\n\ttype: (ActivityStreamsLinkTypes | string) | (ActivityStreamsLinkTypes | string)[];\n\n\t/**\n\t * The target URI of the Link.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-href\n\t * @format uri\n\t */\n\thref: string;\n\n\t/**\n\t * A natural language name for the link.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-name\n\t */\n\tname?: string | IJsonLdLanguageMap;\n\n\t/**\n\t * A language hint for the target resource.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-hreflang\n\t */\n\threflang?: string;\n\n\t/**\n\t * MIME media type of the referenced resource.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-mediatype\n\t */\n\tmediaType?: string;\n\n\t/**\n\t * Link relation value(s).\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-rel\n\t */\n\trel?: ObjectOrArray<string>;\n\n\t/**\n\t * Desired rendered height.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-height\n\t */\n\theight?: number;\n\n\t/**\n\t * Desired rendered width.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-width\n\t */\n\twidth?: number;\n\n\t/**\n\t * Preview of the link.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-preview\n\t */\n\tpreview?: ObjectOrArray<string | IJsonLdNodeObject>;\n}\n"]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IActivityStreamsObject.js","sourceRoot":"","sources":["../../../src/models/IActivityStreamsObject.ts"],"names":[],"mappings":"","sourcesContent":["// Copyright 2026 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport type { ObjectOrArray } from \"@twin.org/core\";\nimport type { IJsonLdLanguageMap, IJsonLdNodeObject } from \"@twin.org/data-json-ld\";\nimport type { ActivityStreamsContextType } from \"./activityStreamsContextType.js\";\nimport type { ActivityStreamsObjectTypes } from \"./activityStreamsObjectTypes.js\";\n\n/**\n * A W3C Activity Streams Object.\n *\n * This is the base type for most ActivityStreams entities. It supports natural language\n * values (e.g. `name`, `summary`, `content`) as either plain strings or language maps.\n * @see https://www.w3.org/TR/activitystreams-core/#object\n */\nexport interface IActivityStreamsObject {\n\t/**\n\t * The LD Context.\n\t */\n\t\"@context\": ActivityStreamsContextType;\n\n\t/**\n\t * Object type.\n\t *\n\t * The value can be a single type or an array of types.\n\t */\n\ttype?: (ActivityStreamsObjectTypes | string) | (ActivityStreamsObjectTypes | string)[];\n\n\t/**\n\t * Global identifier.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-id\n\t */\n\tid?: string;\n\n\t/**\n\t * Natural language name.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-name\n\t */\n\tname?: string | IJsonLdLanguageMap;\n\n\t/**\n\t * Natural language name map.\n\t * @see https://www.w3.org/TR/activitystreams-core/#naturalLanguageValues\n\t */\n\tnameMap?: IJsonLdLanguageMap;\n\n\t/**\n\t * Natural language summary.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-summary\n\t */\n\tsummary?: string | IJsonLdLanguageMap;\n\n\t/**\n\t * Natural language summary map.\n\t * @see https://www.w3.org/TR/activitystreams-core/#naturalLanguageValues\n\t */\n\tsummaryMap?: IJsonLdLanguageMap;\n\n\t/**\n\t * Natural language content.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-content\n\t */\n\tcontent?: string | IJsonLdLanguageMap;\n\n\t/**\n\t * Natural language content map.\n\t * @see https://www.w3.org/TR/activitystreams-core/#naturalLanguageValues\n\t */\n\tcontentMap?: IJsonLdLanguageMap;\n\n\t/**\n\t * A link to the representation of the object.\n\t *\n\t * The value can be a URI or an embedded node object.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-url\n\t */\n\turl?: ObjectOrArray<string | IJsonLdNodeObject>;\n\n\t/**\n\t * A graphical representation of the object.\n\t *\n\t * The value can be a URI or an embedded `Image`/`Link` object.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-image-term\n\t */\n\timage?: ObjectOrArray<string | IJsonLdNodeObject>;\n\n\t/**\n\t * An icon for the object.\n\t *\n\t * The value can be a URI or an embedded `Image`/`Link` object.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-icon\n\t */\n\ticon?: ObjectOrArray<string | IJsonLdNodeObject>;\n\n\t/**\n\t * Published date-time.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-published\n\t */\n\tpublished?: string;\n\n\t/**\n\t * Updated date-time.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-updated\n\t */\n\tupdated?: string;\n\n\t/**\n\t * Start time.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-starttime\n\t */\n\tstartTime?: string;\n\n\t/**\n\t * End time.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-endtime\n\t */\n\tendTime?: string;\n\n\t/**\n\t * Duration.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-duration\n\t */\n\tduration?: string;\n\n\t/**\n\t * The generator of the object.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-generator\n\t */\n\tgenerator?: ObjectOrArray<string | IJsonLdNodeObject>;\n\n\t/**\n\t * Attachments.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-attachment\n\t */\n\tattachment?: ObjectOrArray<string | IJsonLdNodeObject>;\n\n\t/**\n\t * Objects attributed to.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-attributedto\n\t */\n\tattributedTo?: ObjectOrArray<string | IJsonLdNodeObject>;\n\n\t/**\n\t * Audience.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-audience\n\t */\n\taudience?: ObjectOrArray<string | IJsonLdNodeObject>;\n\n\t/**\n\t * Context.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-context\n\t */\n\tcontext?: ObjectOrArray<string | IJsonLdNodeObject>;\n\n\t/**\n\t * Location.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-location\n\t */\n\tlocation?: ObjectOrArray<string | IJsonLdNodeObject>;\n\n\t/**\n\t * Tag.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-tag\n\t */\n\ttag?: ObjectOrArray<string | IJsonLdNodeObject>;\n\n\t/**\n\t * In reply to.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-inreplyto\n\t */\n\tinReplyTo?: ObjectOrArray<string | IJsonLdNodeObject>;\n\n\t/**\n\t * Replies collection.\n\t *\n\t * Typically an embedded `Collection` of Objects that are replies to this object.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-replies\n\t */\n\treplies?: IJsonLdNodeObject;\n\n\t/**\n\t * Preview.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-preview\n\t */\n\tpreview?: ObjectOrArray<string | IJsonLdNodeObject>;\n\n\t/**\n\t * To.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-to\n\t */\n\tto?: ObjectOrArray<string | IJsonLdNodeObject>;\n\n\t/**\n\t * BTo.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-bto\n\t */\n\tbto?: ObjectOrArray<string | IJsonLdNodeObject>;\n\n\t/**\n\t * CC.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-cc\n\t */\n\tcc?: ObjectOrArray<string | IJsonLdNodeObject>;\n\n\t/**\n\t * BCC.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-bcc\n\t */\n\tbcc?: ObjectOrArray<string | IJsonLdNodeObject>;\n\n\t/**\n\t * MIME media type of the referenced resource.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-mediatype\n\t */\n\tmediaType?: string;\n}\n"]}
|
|
1
|
+
{"version":3,"file":"IActivityStreamsObject.js","sourceRoot":"","sources":["../../../src/models/IActivityStreamsObject.ts"],"names":[],"mappings":"","sourcesContent":["// Copyright 2026 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport type { ObjectOrArray } from \"@twin.org/core\";\nimport type { IJsonLdLanguageMap, IJsonLdNodeObject } from \"@twin.org/data-json-ld\";\nimport type { ActivityStreamsContextType } from \"./activityStreamsContextType.js\";\nimport type { ActivityStreamsObjectTypes } from \"./activityStreamsObjectTypes.js\";\n\n/**\n * A W3C Activity Streams Object.\n *\n * This is the base type for most ActivityStreams entities. It supports natural language\n * values (e.g. `name`, `summary`, `content`) as either plain strings or language maps.\n * @see https://www.w3.org/TR/activitystreams-core/#object\n */\nexport interface IActivityStreamsObject {\n\t/**\n\t * The LD Context.\n\t */\n\t\"@context\": ActivityStreamsContextType;\n\n\t/**\n\t * Object type.\n\t *\n\t * The value can be a single type or an array of types.\n\t */\n\ttype?: (ActivityStreamsObjectTypes | string) | (ActivityStreamsObjectTypes | string)[];\n\n\t/**\n\t * Global identifier.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-id\n\t * @format uri\n\t */\n\tid?: string;\n\n\t/**\n\t * Natural language name.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-name\n\t */\n\tname?: string | IJsonLdLanguageMap;\n\n\t/**\n\t * Natural language name map.\n\t * @see https://www.w3.org/TR/activitystreams-core/#naturalLanguageValues\n\t */\n\tnameMap?: IJsonLdLanguageMap;\n\n\t/**\n\t * Natural language summary.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-summary\n\t */\n\tsummary?: string | IJsonLdLanguageMap;\n\n\t/**\n\t * Natural language summary map.\n\t * @see https://www.w3.org/TR/activitystreams-core/#naturalLanguageValues\n\t */\n\tsummaryMap?: IJsonLdLanguageMap;\n\n\t/**\n\t * Natural language content.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-content\n\t */\n\tcontent?: string | IJsonLdLanguageMap;\n\n\t/**\n\t * Natural language content map.\n\t * @see https://www.w3.org/TR/activitystreams-core/#naturalLanguageValues\n\t */\n\tcontentMap?: IJsonLdLanguageMap;\n\n\t/**\n\t * A link to the representation of the object.\n\t *\n\t * The value can be a URI or an embedded node object.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-url\n\t */\n\turl?: ObjectOrArray<string | IJsonLdNodeObject>;\n\n\t/**\n\t * A graphical representation of the object.\n\t *\n\t * The value can be a URI or an embedded `Image`/`Link` object.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-image-term\n\t */\n\timage?: ObjectOrArray<string | IJsonLdNodeObject>;\n\n\t/**\n\t * An icon for the object.\n\t *\n\t * The value can be a URI or an embedded `Image`/`Link` object.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-icon\n\t */\n\ticon?: ObjectOrArray<string | IJsonLdNodeObject>;\n\n\t/**\n\t * Published date-time.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-published\n\t * @format date-time\n\t */\n\tpublished?: string;\n\n\t/**\n\t * Updated date-time.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-updated\n\t * @format date-time\n\t */\n\tupdated?: string;\n\n\t/**\n\t * Start time.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-starttime\n\t * @format date-time\n\t */\n\tstartTime?: string;\n\n\t/**\n\t * End time.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-endtime\n\t * @format date-time\n\t */\n\tendTime?: string;\n\n\t/**\n\t * Duration.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-duration\n\t * @format duration\n\t */\n\tduration?: string;\n\n\t/**\n\t * The generator of the object.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-generator\n\t */\n\tgenerator?: ObjectOrArray<string | IJsonLdNodeObject>;\n\n\t/**\n\t * Attachments.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-attachment\n\t */\n\tattachment?: ObjectOrArray<string | IJsonLdNodeObject>;\n\n\t/**\n\t * Objects attributed to.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-attributedto\n\t */\n\tattributedTo?: ObjectOrArray<string | IJsonLdNodeObject>;\n\n\t/**\n\t * Audience.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-audience\n\t */\n\taudience?: ObjectOrArray<string | IJsonLdNodeObject>;\n\n\t/**\n\t * Context.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-context\n\t */\n\tcontext?: ObjectOrArray<string | IJsonLdNodeObject>;\n\n\t/**\n\t * Location.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-location\n\t */\n\tlocation?: ObjectOrArray<string | IJsonLdNodeObject>;\n\n\t/**\n\t * Tag.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-tag\n\t */\n\ttag?: ObjectOrArray<string | IJsonLdNodeObject>;\n\n\t/**\n\t * In reply to.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-inreplyto\n\t */\n\tinReplyTo?: ObjectOrArray<string | IJsonLdNodeObject>;\n\n\t/**\n\t * Replies collection.\n\t *\n\t * Typically an embedded `Collection` of Objects that are replies to this object.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-replies\n\t */\n\treplies?: IJsonLdNodeObject;\n\n\t/**\n\t * Preview.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-preview\n\t */\n\tpreview?: ObjectOrArray<string | IJsonLdNodeObject>;\n\n\t/**\n\t * To.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-to\n\t */\n\tto?: ObjectOrArray<string | IJsonLdNodeObject>;\n\n\t/**\n\t * BTo.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-bto\n\t */\n\tbto?: ObjectOrArray<string | IJsonLdNodeObject>;\n\n\t/**\n\t * CC.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-cc\n\t */\n\tcc?: ObjectOrArray<string | IJsonLdNodeObject>;\n\n\t/**\n\t * BCC.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-bcc\n\t */\n\tbcc?: ObjectOrArray<string | IJsonLdNodeObject>;\n\n\t/**\n\t * MIME media type of the referenced resource.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-mediatype\n\t */\n\tmediaType?: string;\n}\n"]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IActivityStreamsTombstone.js","sourceRoot":"","sources":["../../../src/models/IActivityStreamsTombstone.ts"],"names":[],"mappings":"","sourcesContent":["// Copyright 2026 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport type { ObjectOrArray } from \"@twin.org/core\";\nimport type { ActivityStreamsObjectTypes } from \"./activityStreamsObjectTypes.js\";\nimport type { IActivityStreamsObject } from \"./IActivityStreamsObject.js\";\n\n/**\n * A W3C Activity Streams Tombstone.\n *\n * A `Tombstone` represents an object that has been deleted. Implementations can\n * include `formerType` and `deleted` to provide additional context.\n * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-tombstone\n */\nexport interface IActivityStreamsTombstone extends IActivityStreamsObject {\n\t/**\n\t * Tombstone type.\n\t */\n\ttype:\n\t\t| (typeof ActivityStreamsObjectTypes.Tombstone | string)\n\t\t| (typeof ActivityStreamsObjectTypes.Tombstone | string)[];\n\n\t/**\n\t * The date and time at which the object was deleted.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-deleted\n\t */\n\tdeleted?: string;\n\n\t/**\n\t * The former type of the deleted object.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-formertype\n\t */\n\tformerType?: ObjectOrArray<string>;\n}\n"]}
|
|
1
|
+
{"version":3,"file":"IActivityStreamsTombstone.js","sourceRoot":"","sources":["../../../src/models/IActivityStreamsTombstone.ts"],"names":[],"mappings":"","sourcesContent":["// Copyright 2026 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport type { ObjectOrArray } from \"@twin.org/core\";\nimport type { ActivityStreamsObjectTypes } from \"./activityStreamsObjectTypes.js\";\nimport type { IActivityStreamsObject } from \"./IActivityStreamsObject.js\";\n\n/**\n * A W3C Activity Streams Tombstone.\n *\n * A `Tombstone` represents an object that has been deleted. Implementations can\n * include `formerType` and `deleted` to provide additional context.\n * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-tombstone\n */\nexport interface IActivityStreamsTombstone extends IActivityStreamsObject {\n\t/**\n\t * Tombstone type.\n\t */\n\ttype:\n\t\t| (typeof ActivityStreamsObjectTypes.Tombstone | string)\n\t\t| (typeof ActivityStreamsObjectTypes.Tombstone | string)[];\n\n\t/**\n\t * The date and time at which the object was deleted.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-deleted\n\t * @format date-time\n\t */\n\tdeleted?: string;\n\n\t/**\n\t * The former type of the deleted object.\n\t * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-formertype\n\t */\n\tformerType?: ObjectOrArray<string>;\n}\n"]}
|
|
@@ -80,7 +80,8 @@
|
|
|
80
80
|
},
|
|
81
81
|
"id": {
|
|
82
82
|
"type": "string",
|
|
83
|
-
"description": "Global identifier."
|
|
83
|
+
"description": "Global identifier.",
|
|
84
|
+
"format": "uri"
|
|
84
85
|
},
|
|
85
86
|
"name": {
|
|
86
87
|
"anyOf": [
|
|
@@ -201,23 +202,28 @@
|
|
|
201
202
|
},
|
|
202
203
|
"published": {
|
|
203
204
|
"type": "string",
|
|
204
|
-
"description": "Published date-time."
|
|
205
|
+
"description": "Published date-time.",
|
|
206
|
+
"format": "date-time"
|
|
205
207
|
},
|
|
206
208
|
"updated": {
|
|
207
209
|
"type": "string",
|
|
208
|
-
"description": "
|
|
210
|
+
"description": "Updated date-time.",
|
|
211
|
+
"format": "date-time"
|
|
209
212
|
},
|
|
210
213
|
"startTime": {
|
|
211
214
|
"type": "string",
|
|
212
|
-
"description": "Start time."
|
|
215
|
+
"description": "Start time.",
|
|
216
|
+
"format": "date-time"
|
|
213
217
|
},
|
|
214
218
|
"endTime": {
|
|
215
219
|
"type": "string",
|
|
216
|
-
"description": "End time."
|
|
220
|
+
"description": "End time.",
|
|
221
|
+
"format": "date-time"
|
|
217
222
|
},
|
|
218
223
|
"duration": {
|
|
219
224
|
"type": "string",
|
|
220
|
-
"description": "Duration."
|
|
225
|
+
"description": "Duration.",
|
|
226
|
+
"format": "duration"
|
|
221
227
|
},
|
|
222
228
|
"generator": {
|
|
223
229
|
"description": "Object or array data type",
|
|
@@ -94,7 +94,8 @@
|
|
|
94
94
|
},
|
|
95
95
|
"id": {
|
|
96
96
|
"type": "string",
|
|
97
|
-
"description": "Global identifier."
|
|
97
|
+
"description": "Global identifier.",
|
|
98
|
+
"format": "uri"
|
|
98
99
|
},
|
|
99
100
|
"name": {
|
|
100
101
|
"anyOf": [
|
|
@@ -215,23 +216,28 @@
|
|
|
215
216
|
},
|
|
216
217
|
"published": {
|
|
217
218
|
"type": "string",
|
|
218
|
-
"description": "Published date-time."
|
|
219
|
+
"description": "Published date-time.",
|
|
220
|
+
"format": "date-time"
|
|
219
221
|
},
|
|
220
222
|
"updated": {
|
|
221
223
|
"type": "string",
|
|
222
|
-
"description": "Updated date-time."
|
|
224
|
+
"description": "Updated date-time.",
|
|
225
|
+
"format": "date-time"
|
|
223
226
|
},
|
|
224
227
|
"startTime": {
|
|
225
228
|
"type": "string",
|
|
226
|
-
"description": "Start time."
|
|
229
|
+
"description": "Start time.",
|
|
230
|
+
"format": "date-time"
|
|
227
231
|
},
|
|
228
232
|
"endTime": {
|
|
229
233
|
"type": "string",
|
|
230
|
-
"description": "End time."
|
|
234
|
+
"description": "End time.",
|
|
235
|
+
"format": "date-time"
|
|
231
236
|
},
|
|
232
237
|
"duration": {
|
|
233
238
|
"type": "string",
|
|
234
|
-
"description": "Duration."
|
|
239
|
+
"description": "Duration.",
|
|
240
|
+
"format": "duration"
|
|
235
241
|
},
|
|
236
242
|
"generator": {
|
|
237
243
|
"description": "Object or array data type",
|
|
@@ -74,7 +74,8 @@
|
|
|
74
74
|
},
|
|
75
75
|
"id": {
|
|
76
76
|
"type": "string",
|
|
77
|
-
"description": "Global identifier."
|
|
77
|
+
"description": "Global identifier.",
|
|
78
|
+
"format": "uri"
|
|
78
79
|
},
|
|
79
80
|
"name": {
|
|
80
81
|
"anyOf": [
|
|
@@ -195,23 +196,28 @@
|
|
|
195
196
|
},
|
|
196
197
|
"published": {
|
|
197
198
|
"type": "string",
|
|
198
|
-
"description": "Published date-time."
|
|
199
|
+
"description": "Published date-time.",
|
|
200
|
+
"format": "date-time"
|
|
199
201
|
},
|
|
200
202
|
"updated": {
|
|
201
203
|
"type": "string",
|
|
202
|
-
"description": "Updated date-time."
|
|
204
|
+
"description": "Updated date-time.",
|
|
205
|
+
"format": "date-time"
|
|
203
206
|
},
|
|
204
207
|
"startTime": {
|
|
205
208
|
"type": "string",
|
|
206
|
-
"description": "Start time."
|
|
209
|
+
"description": "Start time.",
|
|
210
|
+
"format": "date-time"
|
|
207
211
|
},
|
|
208
212
|
"endTime": {
|
|
209
213
|
"type": "string",
|
|
210
|
-
"description": "End time."
|
|
214
|
+
"description": "End time.",
|
|
215
|
+
"format": "date-time"
|
|
211
216
|
},
|
|
212
217
|
"duration": {
|
|
213
218
|
"type": "string",
|
|
214
|
-
"description": "Duration."
|
|
219
|
+
"description": "Duration.",
|
|
220
|
+
"format": "duration"
|
|
215
221
|
},
|
|
216
222
|
"generator": {
|
|
217
223
|
"description": "Object or array data type",
|
|
@@ -74,7 +74,8 @@
|
|
|
74
74
|
},
|
|
75
75
|
"id": {
|
|
76
76
|
"type": "string",
|
|
77
|
-
"description": "Global identifier."
|
|
77
|
+
"description": "Global identifier.",
|
|
78
|
+
"format": "uri"
|
|
78
79
|
},
|
|
79
80
|
"name": {
|
|
80
81
|
"anyOf": [
|
|
@@ -195,23 +196,28 @@
|
|
|
195
196
|
},
|
|
196
197
|
"published": {
|
|
197
198
|
"type": "string",
|
|
198
|
-
"description": "Published date-time."
|
|
199
|
+
"description": "Published date-time.",
|
|
200
|
+
"format": "date-time"
|
|
199
201
|
},
|
|
200
202
|
"updated": {
|
|
201
203
|
"type": "string",
|
|
202
|
-
"description": "Updated date-time."
|
|
204
|
+
"description": "Updated date-time.",
|
|
205
|
+
"format": "date-time"
|
|
203
206
|
},
|
|
204
207
|
"startTime": {
|
|
205
208
|
"type": "string",
|
|
206
|
-
"description": "Start time."
|
|
209
|
+
"description": "Start time.",
|
|
210
|
+
"format": "date-time"
|
|
207
211
|
},
|
|
208
212
|
"endTime": {
|
|
209
213
|
"type": "string",
|
|
210
|
-
"description": "End time."
|
|
214
|
+
"description": "End time.",
|
|
215
|
+
"format": "date-time"
|
|
211
216
|
},
|
|
212
217
|
"duration": {
|
|
213
218
|
"type": "string",
|
|
214
|
-
"description": "Duration."
|
|
219
|
+
"description": "Duration.",
|
|
220
|
+
"format": "duration"
|
|
215
221
|
},
|
|
216
222
|
"generator": {
|
|
217
223
|
"description": "Object or array data type",
|
|
@@ -74,7 +74,8 @@
|
|
|
74
74
|
},
|
|
75
75
|
"id": {
|
|
76
76
|
"type": "string",
|
|
77
|
-
"description": "Global identifier."
|
|
77
|
+
"description": "Global identifier.",
|
|
78
|
+
"format": "uri"
|
|
78
79
|
},
|
|
79
80
|
"name": {
|
|
80
81
|
"anyOf": [
|
|
@@ -195,23 +196,28 @@
|
|
|
195
196
|
},
|
|
196
197
|
"published": {
|
|
197
198
|
"type": "string",
|
|
198
|
-
"description": "Published date-time."
|
|
199
|
+
"description": "Published date-time.",
|
|
200
|
+
"format": "date-time"
|
|
199
201
|
},
|
|
200
202
|
"updated": {
|
|
201
203
|
"type": "string",
|
|
202
|
-
"description": "Updated date-time."
|
|
204
|
+
"description": "Updated date-time.",
|
|
205
|
+
"format": "date-time"
|
|
203
206
|
},
|
|
204
207
|
"startTime": {
|
|
205
208
|
"type": "string",
|
|
206
|
-
"description": "Start time."
|
|
209
|
+
"description": "Start time.",
|
|
210
|
+
"format": "date-time"
|
|
207
211
|
},
|
|
208
212
|
"endTime": {
|
|
209
213
|
"type": "string",
|
|
210
|
-
"description": "End time."
|
|
214
|
+
"description": "End time.",
|
|
215
|
+
"format": "date-time"
|
|
211
216
|
},
|
|
212
217
|
"duration": {
|
|
213
218
|
"type": "string",
|
|
214
|
-
"description": "Duration."
|
|
219
|
+
"description": "Duration.",
|
|
220
|
+
"format": "duration"
|
|
215
221
|
},
|
|
216
222
|
"generator": {
|
|
217
223
|
"description": "Object or array data type",
|
|
@@ -74,7 +74,8 @@
|
|
|
74
74
|
},
|
|
75
75
|
"id": {
|
|
76
76
|
"type": "string",
|
|
77
|
-
"description": "Global identifier."
|
|
77
|
+
"description": "Global identifier.",
|
|
78
|
+
"format": "uri"
|
|
78
79
|
},
|
|
79
80
|
"name": {
|
|
80
81
|
"anyOf": [
|
|
@@ -195,23 +196,28 @@
|
|
|
195
196
|
},
|
|
196
197
|
"published": {
|
|
197
198
|
"type": "string",
|
|
198
|
-
"description": "Published date-time."
|
|
199
|
+
"description": "Published date-time.",
|
|
200
|
+
"format": "date-time"
|
|
199
201
|
},
|
|
200
202
|
"updated": {
|
|
201
203
|
"type": "string",
|
|
202
|
-
"description": "Updated date-time."
|
|
204
|
+
"description": "Updated date-time.",
|
|
205
|
+
"format": "date-time"
|
|
203
206
|
},
|
|
204
207
|
"startTime": {
|
|
205
208
|
"type": "string",
|
|
206
|
-
"description": "Start time."
|
|
209
|
+
"description": "Start time.",
|
|
210
|
+
"format": "date-time"
|
|
207
211
|
},
|
|
208
212
|
"endTime": {
|
|
209
213
|
"type": "string",
|
|
210
|
-
"description": "End time."
|
|
214
|
+
"description": "End time.",
|
|
215
|
+
"format": "date-time"
|
|
211
216
|
},
|
|
212
217
|
"duration": {
|
|
213
218
|
"type": "string",
|
|
214
|
-
"description": "Duration."
|
|
219
|
+
"description": "Duration.",
|
|
220
|
+
"format": "duration"
|
|
215
221
|
},
|
|
216
222
|
"generator": {
|
|
217
223
|
"description": "Object or array data type",
|
|
@@ -74,7 +74,8 @@
|
|
|
74
74
|
},
|
|
75
75
|
"id": {
|
|
76
76
|
"type": "string",
|
|
77
|
-
"description": "Global identifier."
|
|
77
|
+
"description": "Global identifier.",
|
|
78
|
+
"format": "uri"
|
|
78
79
|
},
|
|
79
80
|
"name": {
|
|
80
81
|
"anyOf": [
|
|
@@ -195,23 +196,28 @@
|
|
|
195
196
|
},
|
|
196
197
|
"published": {
|
|
197
198
|
"type": "string",
|
|
198
|
-
"description": "Published date-time."
|
|
199
|
+
"description": "Published date-time.",
|
|
200
|
+
"format": "date-time"
|
|
199
201
|
},
|
|
200
202
|
"updated": {
|
|
201
203
|
"type": "string",
|
|
202
|
-
"description": "Updated date-time."
|
|
204
|
+
"description": "Updated date-time.",
|
|
205
|
+
"format": "date-time"
|
|
203
206
|
},
|
|
204
207
|
"startTime": {
|
|
205
208
|
"type": "string",
|
|
206
|
-
"description": "Start time."
|
|
209
|
+
"description": "Start time.",
|
|
210
|
+
"format": "date-time"
|
|
207
211
|
},
|
|
208
212
|
"endTime": {
|
|
209
213
|
"type": "string",
|
|
210
|
-
"description": "End time."
|
|
214
|
+
"description": "End time.",
|
|
215
|
+
"format": "date-time"
|
|
211
216
|
},
|
|
212
217
|
"duration": {
|
|
213
218
|
"type": "string",
|
|
214
|
-
"description": "Duration."
|
|
219
|
+
"description": "Duration.",
|
|
220
|
+
"format": "duration"
|
|
215
221
|
},
|
|
216
222
|
"generator": {
|
|
217
223
|
"description": "Object or array data type",
|
|
@@ -74,7 +74,8 @@
|
|
|
74
74
|
},
|
|
75
75
|
"id": {
|
|
76
76
|
"type": "string",
|
|
77
|
-
"description": "Global identifier."
|
|
77
|
+
"description": "Global identifier.",
|
|
78
|
+
"format": "uri"
|
|
78
79
|
},
|
|
79
80
|
"name": {
|
|
80
81
|
"anyOf": [
|
|
@@ -195,23 +196,28 @@
|
|
|
195
196
|
},
|
|
196
197
|
"published": {
|
|
197
198
|
"type": "string",
|
|
198
|
-
"description": "Published date-time."
|
|
199
|
+
"description": "Published date-time.",
|
|
200
|
+
"format": "date-time"
|
|
199
201
|
},
|
|
200
202
|
"updated": {
|
|
201
203
|
"type": "string",
|
|
202
|
-
"description": "Updated date-time."
|
|
204
|
+
"description": "Updated date-time.",
|
|
205
|
+
"format": "date-time"
|
|
203
206
|
},
|
|
204
207
|
"startTime": {
|
|
205
208
|
"type": "string",
|
|
206
|
-
"description": "Start time."
|
|
209
|
+
"description": "Start time.",
|
|
210
|
+
"format": "date-time"
|
|
207
211
|
},
|
|
208
212
|
"endTime": {
|
|
209
213
|
"type": "string",
|
|
210
|
-
"description": "End time."
|
|
214
|
+
"description": "End time.",
|
|
215
|
+
"format": "date-time"
|
|
211
216
|
},
|
|
212
217
|
"duration": {
|
|
213
218
|
"type": "string",
|
|
214
|
-
"description": "Duration."
|
|
219
|
+
"description": "Duration.",
|
|
220
|
+
"format": "duration"
|
|
215
221
|
},
|
|
216
222
|
"generator": {
|
|
217
223
|
"description": "Object or array data type",
|
|
@@ -74,7 +74,8 @@
|
|
|
74
74
|
},
|
|
75
75
|
"id": {
|
|
76
76
|
"type": "string",
|
|
77
|
-
"description": "Global identifier."
|
|
77
|
+
"description": "Global identifier.",
|
|
78
|
+
"format": "uri"
|
|
78
79
|
},
|
|
79
80
|
"name": {
|
|
80
81
|
"anyOf": [
|
|
@@ -195,23 +196,28 @@
|
|
|
195
196
|
},
|
|
196
197
|
"published": {
|
|
197
198
|
"type": "string",
|
|
198
|
-
"description": "Published date-time."
|
|
199
|
+
"description": "Published date-time.",
|
|
200
|
+
"format": "date-time"
|
|
199
201
|
},
|
|
200
202
|
"updated": {
|
|
201
203
|
"type": "string",
|
|
202
|
-
"description": "Updated date-time."
|
|
204
|
+
"description": "Updated date-time.",
|
|
205
|
+
"format": "date-time"
|
|
203
206
|
},
|
|
204
207
|
"startTime": {
|
|
205
208
|
"type": "string",
|
|
206
|
-
"description": "Start time."
|
|
209
|
+
"description": "Start time.",
|
|
210
|
+
"format": "date-time"
|
|
207
211
|
},
|
|
208
212
|
"endTime": {
|
|
209
213
|
"type": "string",
|
|
210
|
-
"description": "End time."
|
|
214
|
+
"description": "End time.",
|
|
215
|
+
"format": "date-time"
|
|
211
216
|
},
|
|
212
217
|
"duration": {
|
|
213
218
|
"type": "string",
|
|
214
|
-
"description": "Duration."
|
|
219
|
+
"description": "Duration.",
|
|
220
|
+
"format": "duration"
|
|
215
221
|
},
|
|
216
222
|
"generator": {
|
|
217
223
|
"description": "Object or array data type",
|
|
@@ -74,7 +74,8 @@
|
|
|
74
74
|
},
|
|
75
75
|
"id": {
|
|
76
76
|
"type": "string",
|
|
77
|
-
"description": "Global identifier."
|
|
77
|
+
"description": "Global identifier.",
|
|
78
|
+
"format": "uri"
|
|
78
79
|
},
|
|
79
80
|
"name": {
|
|
80
81
|
"anyOf": [
|
|
@@ -195,23 +196,28 @@
|
|
|
195
196
|
},
|
|
196
197
|
"published": {
|
|
197
198
|
"type": "string",
|
|
198
|
-
"description": "Published date-time."
|
|
199
|
+
"description": "Published date-time.",
|
|
200
|
+
"format": "date-time"
|
|
199
201
|
},
|
|
200
202
|
"updated": {
|
|
201
203
|
"type": "string",
|
|
202
|
-
"description": "Updated date-time."
|
|
204
|
+
"description": "Updated date-time.",
|
|
205
|
+
"format": "date-time"
|
|
203
206
|
},
|
|
204
207
|
"startTime": {
|
|
205
208
|
"type": "string",
|
|
206
|
-
"description": "Start time."
|
|
209
|
+
"description": "Start time.",
|
|
210
|
+
"format": "date-time"
|
|
207
211
|
},
|
|
208
212
|
"endTime": {
|
|
209
213
|
"type": "string",
|
|
210
|
-
"description": "End time."
|
|
214
|
+
"description": "End time.",
|
|
215
|
+
"format": "date-time"
|
|
211
216
|
},
|
|
212
217
|
"duration": {
|
|
213
218
|
"type": "string",
|
|
214
|
-
"description": "Duration."
|
|
219
|
+
"description": "Duration.",
|
|
220
|
+
"format": "duration"
|
|
215
221
|
},
|
|
216
222
|
"generator": {
|
|
217
223
|
"description": "Object or array data type",
|
|
@@ -74,7 +74,8 @@
|
|
|
74
74
|
},
|
|
75
75
|
"id": {
|
|
76
76
|
"type": "string",
|
|
77
|
-
"description": "Global identifier."
|
|
77
|
+
"description": "Global identifier.",
|
|
78
|
+
"format": "uri"
|
|
78
79
|
},
|
|
79
80
|
"name": {
|
|
80
81
|
"anyOf": [
|
|
@@ -195,23 +196,28 @@
|
|
|
195
196
|
},
|
|
196
197
|
"published": {
|
|
197
198
|
"type": "string",
|
|
198
|
-
"description": "Published date-time."
|
|
199
|
+
"description": "Published date-time.",
|
|
200
|
+
"format": "date-time"
|
|
199
201
|
},
|
|
200
202
|
"updated": {
|
|
201
203
|
"type": "string",
|
|
202
|
-
"description": "Updated date-time."
|
|
204
|
+
"description": "Updated date-time.",
|
|
205
|
+
"format": "date-time"
|
|
203
206
|
},
|
|
204
207
|
"startTime": {
|
|
205
208
|
"type": "string",
|
|
206
|
-
"description": "Start time."
|
|
209
|
+
"description": "Start time.",
|
|
210
|
+
"format": "date-time"
|
|
207
211
|
},
|
|
208
212
|
"endTime": {
|
|
209
213
|
"type": "string",
|
|
210
|
-
"description": "End time."
|
|
214
|
+
"description": "End time.",
|
|
215
|
+
"format": "date-time"
|
|
211
216
|
},
|
|
212
217
|
"duration": {
|
|
213
218
|
"type": "string",
|
|
214
|
-
"description": "Duration."
|
|
219
|
+
"description": "Duration.",
|
|
220
|
+
"format": "duration"
|
|
215
221
|
},
|
|
216
222
|
"generator": {
|
|
217
223
|
"description": "Object or array data type",
|
|
@@ -88,7 +88,8 @@
|
|
|
88
88
|
},
|
|
89
89
|
"id": {
|
|
90
90
|
"type": "string",
|
|
91
|
-
"description": "Global identifier."
|
|
91
|
+
"description": "Global identifier.",
|
|
92
|
+
"format": "uri"
|
|
92
93
|
},
|
|
93
94
|
"name": {
|
|
94
95
|
"anyOf": [
|
|
@@ -209,23 +210,28 @@
|
|
|
209
210
|
},
|
|
210
211
|
"published": {
|
|
211
212
|
"type": "string",
|
|
212
|
-
"description": "Published date-time."
|
|
213
|
+
"description": "Published date-time.",
|
|
214
|
+
"format": "date-time"
|
|
213
215
|
},
|
|
214
216
|
"updated": {
|
|
215
217
|
"type": "string",
|
|
216
|
-
"description": "Updated date-time."
|
|
218
|
+
"description": "Updated date-time.",
|
|
219
|
+
"format": "date-time"
|
|
217
220
|
},
|
|
218
221
|
"startTime": {
|
|
219
222
|
"type": "string",
|
|
220
|
-
"description": "Start time."
|
|
223
|
+
"description": "Start time.",
|
|
224
|
+
"format": "date-time"
|
|
221
225
|
},
|
|
222
226
|
"endTime": {
|
|
223
227
|
"type": "string",
|
|
224
|
-
"description": "End time."
|
|
228
|
+
"description": "End time.",
|
|
229
|
+
"format": "date-time"
|
|
225
230
|
},
|
|
226
231
|
"duration": {
|
|
227
232
|
"type": "string",
|
|
228
|
-
"description": "Duration."
|
|
233
|
+
"description": "Duration.",
|
|
234
|
+
"format": "duration"
|
|
229
235
|
},
|
|
230
236
|
"generator": {
|
|
231
237
|
"description": "Object or array data type",
|