diff --git a/packages/schema-converter-shex/src/typing/ShexJTypingTransformer.ts b/packages/schema-converter-shex/src/typing/ShexJTypingTransformer.ts index 9ed1444..0c668da 100644 --- a/packages/schema-converter-shex/src/typing/ShexJTypingTransformer.ts +++ b/packages/schema-converter-shex/src/typing/ShexJTypingTransformer.ts @@ -287,6 +287,8 @@ export const ShexJTypingTransformer = ShexJTraverser.createTransformer< return dom.type.string; case "http://www.w3.org/2001/XMLSchema#byte": case "http://www.w3.org/2001/XMLSchema#decimal": + case "http://www.w3.org/2001/XMLSchema#double": + case "http://www.w3.org/2001/XMLSchema#float": case "http://www.w3.org/2001/XMLSchema#int": case "http://www.w3.org/2001/XMLSchema#integer": case "http://www.w3.org/2001/XMLSchema#long": diff --git a/packages/schema-converter-shex/test/testData/activityPub.ts b/packages/schema-converter-shex/test/testData/activityPub.ts index 61e97ed..0c6f273 100644 --- a/packages/schema-converter-shex/test/testData/activityPub.ts +++ b/packages/schema-converter-shex/test/testData/activityPub.ts @@ -9011,5 +9011,5 @@ export const activityPub: TestData = { }, }, successfulTypings: - 'import { LdSet, LdoJsonldContext } from "@ldo/ldo"\n\nexport interface ActivityPubObject {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection.\n */\n type: LdSet<{\n "@id": "Object";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n}\n\nexport interface Link {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * A Link is an indirect, qualified reference to a resource identified by a URL. The fundamental model for links is established by [ RFC5988]. Many of the properties defined by the Activity Vocabulary allow values that are either instances of Object or Link. When a Link is used, it establishes a qualified relation connecting the subject (the containing object) to the resource identified by the href. Properties of the Link are properties of the reference as opposed to properties of the resource.\n */\n type: LdSet<{\n "@id": "Link";\n }>;\n /**\n * The target resource pointed to by a Link.\n */\n href?: string;\n /**\n * A link relation associated with a Link. The value MUST conform to both the [HTML5] and [RFC5988] "link relation" definitions. In the [HTML5], any string not containing the "space" U+0020, "tab" (U+0009), "LF" (U+000A), "FF" (U+000C), "CR" (U+000D) or "," (U+002C) characters can be used as a valid link relation.\n */\n rel?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n name?: LdSet;\n /**\n * Hints as to the language used by the target resource. Value MUST be a [BCP47] Language-Tag.\n */\n hreflang?: string;\n /**\n * On a Link, specifies a hint as to the rendering height in device-independent pixels of the linked resource.\n */\n height?: number;\n /**\n * On a Link, specifies a hint as to the rendering width in device-independent pixels of the linked resource.\n */\n width?: number;\n preview?: LdSet;\n}\n\nexport interface Activity {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Activity";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n actor?: LdSet;\n object?: LdSet;\n target?: LdSet;\n result?: LdSet;\n origin?: LdSet;\n instrument?: LdSet;\n}\n\nexport interface InstransitiveActivity {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken. | Instances of IntransitiveActivity are a subtype of Activity representing intransitive actions. The object property is therefore inappropriate for these activities.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Activity";\n } | {\n "@id": "IntransitiveActivity";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n actor?: LdSet;\n object?: LdSet;\n target?: LdSet;\n result?: LdSet;\n origin?: LdSet;\n instrument?: LdSet;\n}\n\nexport interface Collection {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | A Collection is a subtype of Object that represents ordered or unordered sets of Object or Link instances. Refer to the Activity Streams 2.0 Core specification for a complete description of the Collection type. \n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Collection";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n /**\n * A non-negative integer specifying the total number of objects contained by the logical view of the collection. This number might not reflect the actual number of items serialized within the Collection object instance.\n */\n totalItems?: number;\n items?: LdSet;\n}\n\nexport interface OrderedCollection {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | A Collection is a subtype of Object that represents ordered or unordered sets of Object or Link instances. Refer to the Activity Streams 2.0 Core specification for a complete description of the Collection type. | A subtype of Collection in which members of the logical collection are assumed to always be strictly ordered.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Collection";\n } | {\n "@id": "OrderedCollection";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n /**\n * A non-negative integer specifying the total number of objects contained by the logical view of the collection. This number might not reflect the actual number of items serialized within the Collection object instance.\n */\n totalItems?: number;\n items?: LdSet;\n}\n\nexport interface CollectionPage {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | A Collection is a subtype of Object that represents ordered or unordered sets of Object or Link instances. Refer to the Activity Streams 2.0 Core specification for a complete description of the Collection type. | Used to represent distinct subsets of items from a Collection. Refer to the Activity Streams 2.0 Core for a complete description of the CollectionPage object.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Collection";\n } | {\n "@id": "CollectionPage";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n /**\n * A non-negative integer specifying the total number of objects contained by the logical view of the collection. This number might not reflect the actual number of items serialized within the Collection object instance.\n */\n totalItems?: number;\n items?: LdSet;\n}\n\nexport interface OrderedCollectionPage {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | A Collection is a subtype of Object that represents ordered or unordered sets of Object or Link instances. Refer to the Activity Streams 2.0 Core specification for a complete description of the Collection type. | A subtype of Collection in which members of the logical collection are assumed to always be strictly ordered. | Used to represent ordered subsets of items from an OrderedCollection. Refer to the Activity Streams 2.0 Core for a complete description of the OrderedCollectionPage object.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Collection";\n } | {\n "@id": "OrderedCollection";\n } | {\n "@id": "OrderedCollectionPage";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n /**\n * A non-negative integer specifying the total number of objects contained by the logical view of the collection. This number might not reflect the actual number of items serialized within the Collection object instance.\n */\n totalItems?: number;\n items?: LdSet;\n /**\n * A non-negative integer value identifying the relative position within the logical view of a strictly ordered collection.\n */\n startIndex?: number;\n}\n\nexport interface Accept {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken. | Indicates that the actor accepts the object. The target property can be used in certain circumstances to indicate the context into which the object has been accepted.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Activity";\n } | {\n "@id": "Accept";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n actor?: LdSet;\n object?: LdSet;\n target?: LdSet;\n result?: LdSet;\n origin?: LdSet;\n instrument?: LdSet;\n}\n\nexport interface TentativeAccept {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken. | Indicates that the actor accepts the object. The target property can be used in certain circumstances to indicate the context into which the object has been accepted. | A specialization of Accept indicating that the acceptance is tentative.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Activity";\n } | {\n "@id": "Accept";\n } | {\n "@id": "TentativeAccept";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n actor?: LdSet;\n object?: LdSet;\n target?: LdSet;\n result?: LdSet;\n origin?: LdSet;\n instrument?: LdSet;\n}\n\nexport interface Add {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken. | Indicates that the actor has added the object to the target. If the target property is not explicitly specified, the target would need to be determined implicitly by context. The origin can be used to identify the context from which the object originated. \n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Activity";\n } | {\n "@id": "Add";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n actor?: LdSet;\n object?: LdSet;\n target?: LdSet;\n result?: LdSet;\n origin?: LdSet;\n instrument?: LdSet;\n}\n\nexport interface Arrive {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken. | Instances of IntransitiveActivity are a subtype of Activity representing intransitive actions. The object property is therefore inappropriate for these activities. | An IntransitiveActivity that indicates that the actor has arrived at the location. The origin can be used to identify the context from which the actor originated. The target typically has no defined meaning.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Activity";\n } | {\n "@id": "IntransitiveActivity";\n } | {\n "@id": "Arrive";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n actor?: LdSet;\n object?: LdSet;\n target?: LdSet;\n result?: LdSet;\n origin?: LdSet;\n instrument?: LdSet;\n}\n\nexport interface Create {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken. | Indicates that the actor has created the object.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Activity";\n } | {\n "@id": "Create";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n actor?: LdSet;\n object?: LdSet;\n target?: LdSet;\n result?: LdSet;\n origin?: LdSet;\n instrument?: LdSet;\n}\n\nexport interface Delete {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken. | Indicates that the actor has deleted the object. If specified, the origin indicates the context from which the object was deleted.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Activity";\n } | {\n "@id": "Delete";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n actor?: LdSet;\n object?: LdSet;\n target?: LdSet;\n result?: LdSet;\n origin?: LdSet;\n instrument?: LdSet;\n}\n\nexport interface Follow {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken. | Indicates that the actor is "following" the object. Following is defined in the sense typically used within Social systems in which the actor is interested in any activity performed by or on the object. The target and origin typically have no defined meaning.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Activity";\n } | {\n "@id": "Follow";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n actor?: LdSet;\n object?: LdSet;\n target?: LdSet;\n result?: LdSet;\n origin?: LdSet;\n instrument?: LdSet;\n}\n\nexport interface Ignore {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken. | Indicates that the actor is ignoring the object. The target and origin typically have no defined meaning.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Activity";\n } | {\n "@id": "Ignore";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n actor?: LdSet;\n object?: LdSet;\n target?: LdSet;\n result?: LdSet;\n origin?: LdSet;\n instrument?: LdSet;\n}\n\nexport interface Join {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken. | Indicates that the actor has joined the object. The target and origin typically have no defined meaning.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Activity";\n } | {\n "@id": "Join";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n actor?: LdSet;\n object?: LdSet;\n target?: LdSet;\n result?: LdSet;\n origin?: LdSet;\n instrument?: LdSet;\n}\n\nexport interface Leave {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken. | Indicates that the actor has left the object. The target and origin typically have no meaning.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Activity";\n } | {\n "@id": "Leave";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n actor?: LdSet;\n object?: LdSet;\n target?: LdSet;\n result?: LdSet;\n origin?: LdSet;\n instrument?: LdSet;\n}\n\nexport interface Like {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken. | Indicates that the actor likes, recommends or endorses the object. The target and origin typically have no defined meaning.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Activity";\n } | {\n "@id": "Like";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n actor?: LdSet;\n object?: LdSet;\n target?: LdSet;\n result?: LdSet;\n origin?: LdSet;\n instrument?: LdSet;\n}\n\nexport interface Offer {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken. | Indicates that the actor is offering the object. If specified, the target indicates the entity to which the object is being offered.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Activity";\n } | {\n "@id": "Offer";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n actor?: LdSet;\n object?: LdSet;\n target?: LdSet;\n result?: LdSet;\n origin?: LdSet;\n instrument?: LdSet;\n}\n\nexport interface Invite {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken. | Indicates that the actor is offering the object. If specified, the target indicates the entity to which the object is being offered. | A specialization of Offer in which the actor is extending an invitation for the object to the target.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Activity";\n } | {\n "@id": "Offer";\n } | {\n "@id": "Invite";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n actor?: LdSet;\n object?: LdSet;\n target?: LdSet;\n result?: LdSet;\n origin?: LdSet;\n instrument?: LdSet;\n}\n\nexport interface Reject {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken. | Indicates that the actor is rejecting the object. The target and origin typically have no defined meaning.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Activity";\n } | {\n "@id": "Reject";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n actor?: LdSet;\n object?: LdSet;\n target?: LdSet;\n result?: LdSet;\n origin?: LdSet;\n instrument?: LdSet;\n}\n\nexport interface TentativeReject {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken. | Indicates that the actor is rejecting the object. The target and origin typically have no defined meaning. | A specialization of Reject in which the rejection is considered tentative.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Activity";\n } | {\n "@id": "Reject";\n } | {\n "@id": "TentativeReject";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n actor?: LdSet;\n object?: LdSet;\n target?: LdSet;\n result?: LdSet;\n origin?: LdSet;\n instrument?: LdSet;\n}\n\nexport interface Remove {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken. | Indicates that the actor is removing the object. If specified, the origin indicates the context from which the object is being removed.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Activity";\n } | {\n "@id": "Remove";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n actor?: LdSet;\n object?: LdSet;\n target?: LdSet;\n result?: LdSet;\n origin?: LdSet;\n instrument?: LdSet;\n}\n\nexport interface Undo {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken. | Indicates that the actor is undoing the object. In most cases, the object will be an Activity describing some previously performed action (for instance, a person may have previously "liked" an article but, for whatever reason, might choose to undo that like at some later point in time). The target and origin typically have no defined meaning.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Activity";\n } | {\n "@id": "Undo";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n actor?: LdSet;\n object?: LdSet;\n target?: LdSet;\n result?: LdSet;\n origin?: LdSet;\n instrument?: LdSet;\n}\n\nexport interface Update {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken. | Indicates that the actor has updated the object. Note, however, that this vocabulary does not define a mechanism for describing the actual set of modifications made to object. The target and origin typically have no defined meaning.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Activity";\n } | {\n "@id": "Update";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n actor?: LdSet;\n object?: LdSet;\n target?: LdSet;\n result?: LdSet;\n origin?: LdSet;\n instrument?: LdSet;\n}\n\nexport interface View {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken. | Indicates that the actor has viewed the object.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Activity";\n } | {\n "@id": "View";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n actor?: LdSet;\n object?: LdSet;\n target?: LdSet;\n result?: LdSet;\n origin?: LdSet;\n instrument?: LdSet;\n}\n\nexport interface Listen {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken. | Indicates that the actor has listened to the object.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Activity";\n } | {\n "@id": "Listen";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n actor?: LdSet;\n object?: LdSet;\n target?: LdSet;\n result?: LdSet;\n origin?: LdSet;\n instrument?: LdSet;\n}\n\nexport interface Read {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken. | Indicates that the actor has read the object.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Activity";\n } | {\n "@id": "Read";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n actor?: LdSet;\n object?: LdSet;\n target?: LdSet;\n result?: LdSet;\n origin?: LdSet;\n instrument?: LdSet;\n}\n\nexport interface Move {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken. | Indicates that the actor has moved object from origin to target. If the origin or target are not specified, either can be determined by context.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Activity";\n } | {\n "@id": "Move";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n actor?: LdSet;\n object?: LdSet;\n target?: LdSet;\n result?: LdSet;\n origin?: LdSet;\n instrument?: LdSet;\n}\n\nexport interface Travel {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken. | Instances of IntransitiveActivity are a subtype of Activity representing intransitive actions. The object property is therefore inappropriate for these activities. | Indicates that the actor is traveling to target from origin. Travel is an IntransitiveObject whose actor specifies the direct object. If the target or origin are not specified, either can be determined by context.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Activity";\n } | {\n "@id": "IntransitiveActivity";\n } | {\n "@id": "Travel";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n actor?: LdSet;\n object?: LdSet;\n target?: LdSet;\n result?: LdSet;\n origin?: LdSet;\n instrument?: LdSet;\n}\n\nexport interface Announce {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken. | Indicates that the actor is calling the target\'s attention the object. The origin typically has no defined meaning.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Activity";\n } | {\n "@id": "Announce";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n actor?: LdSet;\n object?: LdSet;\n target?: LdSet;\n result?: LdSet;\n origin?: LdSet;\n instrument?: LdSet;\n}\n\nexport interface Block {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken. | Indicates that the actor is ignoring the object. The target and origin typically have no defined meaning. | Indicates that the actor is blocking the object. Blocking is a stronger form of Ignore. The typical use is to support social systems that allow one user to block activities or content of other users. The target and origin typically have no defined meaning.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Activity";\n } | {\n "@id": "Ignore";\n } | {\n "@id": "Block";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n actor?: LdSet;\n object?: LdSet;\n target?: LdSet;\n result?: LdSet;\n origin?: LdSet;\n instrument?: LdSet;\n}\n\nexport interface Flag {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken. | Indicates that the actor is "flagging" the object. Flagging is defined in the sense common to many social platforms as reporting content as being inappropriate for any number of reasons.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Activity";\n } | {\n "@id": "Flag";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n actor?: LdSet;\n object?: LdSet;\n target?: LdSet;\n result?: LdSet;\n origin?: LdSet;\n instrument?: LdSet;\n}\n\nexport interface Dislike {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken. | Indicates that the actor dislikes the object.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Activity";\n } | {\n "@id": "Dislike";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n actor?: LdSet;\n object?: LdSet;\n target?: LdSet;\n result?: LdSet;\n origin?: LdSet;\n instrument?: LdSet;\n}\n\nexport interface Question {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken. | Instances of IntransitiveActivity are a subtype of Activity representing intransitive actions. The object property is therefore inappropriate for these activities. | Represents a question being asked. Question objects are an extension of IntransitiveActivity. That is, the Question object is an Activity, but the direct object is the question itself and therefore it would not contain an object property. Either of the anyOf and oneOf properties MAY be used to express possible answers, but a Question object MUST NOT have both properties. \n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Activity";\n } | {\n "@id": "IntransitiveActivity";\n } | {\n "@id": "Question";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n actor?: LdSet;\n object?: LdSet;\n target?: LdSet;\n result?: LdSet;\n origin?: LdSet;\n instrument?: LdSet;\n closed?: LdSet;\n}\n\nexport interface Application {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | Describes a software application.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Application";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n}\n\nexport interface Group {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | Represents a formal or informal collective of Actors.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Group";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n}\n\nexport interface Organization {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | Represents an organization.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Organization";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n}\n\nexport interface Person {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | Represents an individual person.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Person";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n}\n\nexport interface Service {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | Represents a service of any kind.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Service";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n}\n\nexport interface Relationship {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | Describes a relationship between two individuals. The subject and object properties are used to identify the connected individuals. See 5.2 Representing Relationships Between Entities for additional information. \n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Relationship";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n /**\n * On a Relationship object, the relationship property identifies the kind of relationship that exists between subject and object.\n */\n relationship?: LdSet;\n}\n\nexport interface Article {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | Represents any kind of multi-paragraph written work.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Article";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n}\n\nexport interface Document {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | Represents a document of any kind.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Document";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n}\n\nexport interface Audio {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | Represents a document of any kind. | Represents an audio document of any kind.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Document";\n } | {\n "@id": "Audio";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n}\n\nexport interface Image {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | Represents a document of any kind. | An image document of any kind\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Document";\n } | {\n "@id": "Image";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n}\n\nexport interface Video {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | Represents a document of any kind. | Represents a video document of any kind. \n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Document";\n } | {\n "@id": "Video";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n}\n\nexport interface Note {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | Represents a short written work typically less than a single paragraph in length.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Note";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n}\n\nexport interface Page {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | Represents a document of any kind. | Represents a Web Page.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Document";\n } | {\n "@id": "Page";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n}\n\nexport interface Event {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | Represents any kind of event.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Event";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n}\n\nexport interface Place {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | Represents a logical or physical location. See 5.3 Representing Places for additional information.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Place";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n /**\n * Indicates the accuracy of position coordinates on a Place objects. Expressed in properties of percentage. e.g. "94.0" means "94.0% accurate".\n */\n accuracy?: string;\n /**\n * Indicates the altitude of a place. The measurement units is indicated using the units property. If units is not specified, the default is assumed to be "m" indicating meters. \n */\n altitude?: string;\n /**\n * The latitude of a place | The longitude of a place\n */\n latitude?: LdSet;\n /**\n * The radius from the given latitude and longitude for a Place. The units is expressed by the units property. If units is not specified, the default is assumed to be "m" indicating "meters".\n */\n radius?: string;\n}\n\nexport interface Mention {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * A Link is an indirect, qualified reference to a resource identified by a URL. The fundamental model for links is established by [ RFC5988]. Many of the properties defined by the Activity Vocabulary allow values that are either instances of Object or Link. When a Link is used, it establishes a qualified relation connecting the subject (the containing object) to the resource identified by the href. Properties of the Link are properties of the reference as opposed to properties of the resource. | A specialized Link that represents an @mention.\n */\n type: LdSet<{\n "@id": "Link";\n } | {\n "@id": "Mention";\n }>;\n /**\n * The target resource pointed to by a Link.\n */\n href?: string;\n /**\n * A link relation associated with a Link. The value MUST conform to both the [HTML5] and [RFC5988] "link relation" definitions. In the [HTML5], any string not containing the "space" U+0020, "tab" (U+0009), "LF" (U+000A), "FF" (U+000C), "CR" (U+000D) or "," (U+002C) characters can be used as a valid link relation.\n */\n rel?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n name?: LdSet;\n /**\n * Hints as to the language used by the target resource. Value MUST be a [BCP47] Language-Tag.\n */\n hreflang?: string;\n /**\n * On a Link, specifies a hint as to the rendering height in device-independent pixels of the linked resource.\n */\n height?: number;\n /**\n * On a Link, specifies a hint as to the rendering width in device-independent pixels of the linked resource.\n */\n width?: number;\n preview?: LdSet;\n}\n\nexport interface Profile {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | A Profile is a content object that describes another Object, typically used to describe Actor Type objects. The describes property is used to reference the object being described by the profile.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Profile";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n /**\n * On a Profile object, the describes property identifies the object described by the Profile.\n */\n describes?: ActivityPubObject;\n}\n\nexport interface Tombstone {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | A Tombstone represents a content object that has been deleted. It can be used in Collections to signify that there used to be an object at this position, but it has been deleted.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Tombstone";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n /**\n * On a Tombstone object, the formerType property identifies the type of the object that was deleted.\n */\n formerType?: LdSet;\n /**\n * On a Tombstone object, the deleted property is a timestamp for when the object was deleted.\n */\n deleted?: string;\n}\n\n', + 'import { LdSet, LdoJsonldContext } from "@ldo/ldo"\n\nexport interface ActivityPubObject {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection.\n */\n type: LdSet<{\n "@id": "Object";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n}\n\nexport interface Link {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * A Link is an indirect, qualified reference to a resource identified by a URL. The fundamental model for links is established by [ RFC5988]. Many of the properties defined by the Activity Vocabulary allow values that are either instances of Object or Link. When a Link is used, it establishes a qualified relation connecting the subject (the containing object) to the resource identified by the href. Properties of the Link are properties of the reference as opposed to properties of the resource.\n */\n type: LdSet<{\n "@id": "Link";\n }>;\n /**\n * The target resource pointed to by a Link.\n */\n href?: string;\n /**\n * A link relation associated with a Link. The value MUST conform to both the [HTML5] and [RFC5988] "link relation" definitions. In the [HTML5], any string not containing the "space" U+0020, "tab" (U+0009), "LF" (U+000A), "FF" (U+000C), "CR" (U+000D) or "," (U+002C) characters can be used as a valid link relation.\n */\n rel?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n name?: LdSet;\n /**\n * Hints as to the language used by the target resource. Value MUST be a [BCP47] Language-Tag.\n */\n hreflang?: string;\n /**\n * On a Link, specifies a hint as to the rendering height in device-independent pixels of the linked resource.\n */\n height?: number;\n /**\n * On a Link, specifies a hint as to the rendering width in device-independent pixels of the linked resource.\n */\n width?: number;\n preview?: LdSet;\n}\n\nexport interface Activity {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Activity";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n actor?: LdSet;\n object?: LdSet;\n target?: LdSet;\n result?: LdSet;\n origin?: LdSet;\n instrument?: LdSet;\n}\n\nexport interface InstransitiveActivity {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken. | Instances of IntransitiveActivity are a subtype of Activity representing intransitive actions. The object property is therefore inappropriate for these activities.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Activity";\n } | {\n "@id": "IntransitiveActivity";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n actor?: LdSet;\n object?: LdSet;\n target?: LdSet;\n result?: LdSet;\n origin?: LdSet;\n instrument?: LdSet;\n}\n\nexport interface Collection {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | A Collection is a subtype of Object that represents ordered or unordered sets of Object or Link instances. Refer to the Activity Streams 2.0 Core specification for a complete description of the Collection type. \n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Collection";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n /**\n * A non-negative integer specifying the total number of objects contained by the logical view of the collection. This number might not reflect the actual number of items serialized within the Collection object instance.\n */\n totalItems?: number;\n items?: LdSet;\n}\n\nexport interface OrderedCollection {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | A Collection is a subtype of Object that represents ordered or unordered sets of Object or Link instances. Refer to the Activity Streams 2.0 Core specification for a complete description of the Collection type. | A subtype of Collection in which members of the logical collection are assumed to always be strictly ordered.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Collection";\n } | {\n "@id": "OrderedCollection";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n /**\n * A non-negative integer specifying the total number of objects contained by the logical view of the collection. This number might not reflect the actual number of items serialized within the Collection object instance.\n */\n totalItems?: number;\n items?: LdSet;\n}\n\nexport interface CollectionPage {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | A Collection is a subtype of Object that represents ordered or unordered sets of Object or Link instances. Refer to the Activity Streams 2.0 Core specification for a complete description of the Collection type. | Used to represent distinct subsets of items from a Collection. Refer to the Activity Streams 2.0 Core for a complete description of the CollectionPage object.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Collection";\n } | {\n "@id": "CollectionPage";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n /**\n * A non-negative integer specifying the total number of objects contained by the logical view of the collection. This number might not reflect the actual number of items serialized within the Collection object instance.\n */\n totalItems?: number;\n items?: LdSet;\n}\n\nexport interface OrderedCollectionPage {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | A Collection is a subtype of Object that represents ordered or unordered sets of Object or Link instances. Refer to the Activity Streams 2.0 Core specification for a complete description of the Collection type. | A subtype of Collection in which members of the logical collection are assumed to always be strictly ordered. | Used to represent ordered subsets of items from an OrderedCollection. Refer to the Activity Streams 2.0 Core for a complete description of the OrderedCollectionPage object.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Collection";\n } | {\n "@id": "OrderedCollection";\n } | {\n "@id": "OrderedCollectionPage";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n /**\n * A non-negative integer specifying the total number of objects contained by the logical view of the collection. This number might not reflect the actual number of items serialized within the Collection object instance.\n */\n totalItems?: number;\n items?: LdSet;\n /**\n * A non-negative integer value identifying the relative position within the logical view of a strictly ordered collection.\n */\n startIndex?: number;\n}\n\nexport interface Accept {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken. | Indicates that the actor accepts the object. The target property can be used in certain circumstances to indicate the context into which the object has been accepted.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Activity";\n } | {\n "@id": "Accept";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n actor?: LdSet;\n object?: LdSet;\n target?: LdSet;\n result?: LdSet;\n origin?: LdSet;\n instrument?: LdSet;\n}\n\nexport interface TentativeAccept {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken. | Indicates that the actor accepts the object. The target property can be used in certain circumstances to indicate the context into which the object has been accepted. | A specialization of Accept indicating that the acceptance is tentative.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Activity";\n } | {\n "@id": "Accept";\n } | {\n "@id": "TentativeAccept";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n actor?: LdSet;\n object?: LdSet;\n target?: LdSet;\n result?: LdSet;\n origin?: LdSet;\n instrument?: LdSet;\n}\n\nexport interface Add {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken. | Indicates that the actor has added the object to the target. If the target property is not explicitly specified, the target would need to be determined implicitly by context. The origin can be used to identify the context from which the object originated. \n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Activity";\n } | {\n "@id": "Add";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n actor?: LdSet;\n object?: LdSet;\n target?: LdSet;\n result?: LdSet;\n origin?: LdSet;\n instrument?: LdSet;\n}\n\nexport interface Arrive {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken. | Instances of IntransitiveActivity are a subtype of Activity representing intransitive actions. The object property is therefore inappropriate for these activities. | An IntransitiveActivity that indicates that the actor has arrived at the location. The origin can be used to identify the context from which the actor originated. The target typically has no defined meaning.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Activity";\n } | {\n "@id": "IntransitiveActivity";\n } | {\n "@id": "Arrive";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n actor?: LdSet;\n object?: LdSet;\n target?: LdSet;\n result?: LdSet;\n origin?: LdSet;\n instrument?: LdSet;\n}\n\nexport interface Create {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken. | Indicates that the actor has created the object.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Activity";\n } | {\n "@id": "Create";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n actor?: LdSet;\n object?: LdSet;\n target?: LdSet;\n result?: LdSet;\n origin?: LdSet;\n instrument?: LdSet;\n}\n\nexport interface Delete {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken. | Indicates that the actor has deleted the object. If specified, the origin indicates the context from which the object was deleted.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Activity";\n } | {\n "@id": "Delete";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n actor?: LdSet;\n object?: LdSet;\n target?: LdSet;\n result?: LdSet;\n origin?: LdSet;\n instrument?: LdSet;\n}\n\nexport interface Follow {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken. | Indicates that the actor is "following" the object. Following is defined in the sense typically used within Social systems in which the actor is interested in any activity performed by or on the object. The target and origin typically have no defined meaning.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Activity";\n } | {\n "@id": "Follow";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n actor?: LdSet;\n object?: LdSet;\n target?: LdSet;\n result?: LdSet;\n origin?: LdSet;\n instrument?: LdSet;\n}\n\nexport interface Ignore {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken. | Indicates that the actor is ignoring the object. The target and origin typically have no defined meaning.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Activity";\n } | {\n "@id": "Ignore";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n actor?: LdSet;\n object?: LdSet;\n target?: LdSet;\n result?: LdSet;\n origin?: LdSet;\n instrument?: LdSet;\n}\n\nexport interface Join {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken. | Indicates that the actor has joined the object. The target and origin typically have no defined meaning.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Activity";\n } | {\n "@id": "Join";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n actor?: LdSet;\n object?: LdSet;\n target?: LdSet;\n result?: LdSet;\n origin?: LdSet;\n instrument?: LdSet;\n}\n\nexport interface Leave {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken. | Indicates that the actor has left the object. The target and origin typically have no meaning.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Activity";\n } | {\n "@id": "Leave";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n actor?: LdSet;\n object?: LdSet;\n target?: LdSet;\n result?: LdSet;\n origin?: LdSet;\n instrument?: LdSet;\n}\n\nexport interface Like {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken. | Indicates that the actor likes, recommends or endorses the object. The target and origin typically have no defined meaning.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Activity";\n } | {\n "@id": "Like";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n actor?: LdSet;\n object?: LdSet;\n target?: LdSet;\n result?: LdSet;\n origin?: LdSet;\n instrument?: LdSet;\n}\n\nexport interface Offer {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken. | Indicates that the actor is offering the object. If specified, the target indicates the entity to which the object is being offered.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Activity";\n } | {\n "@id": "Offer";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n actor?: LdSet;\n object?: LdSet;\n target?: LdSet;\n result?: LdSet;\n origin?: LdSet;\n instrument?: LdSet;\n}\n\nexport interface Invite {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken. | Indicates that the actor is offering the object. If specified, the target indicates the entity to which the object is being offered. | A specialization of Offer in which the actor is extending an invitation for the object to the target.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Activity";\n } | {\n "@id": "Offer";\n } | {\n "@id": "Invite";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n actor?: LdSet;\n object?: LdSet;\n target?: LdSet;\n result?: LdSet;\n origin?: LdSet;\n instrument?: LdSet;\n}\n\nexport interface Reject {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken. | Indicates that the actor is rejecting the object. The target and origin typically have no defined meaning.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Activity";\n } | {\n "@id": "Reject";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n actor?: LdSet;\n object?: LdSet;\n target?: LdSet;\n result?: LdSet;\n origin?: LdSet;\n instrument?: LdSet;\n}\n\nexport interface TentativeReject {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken. | Indicates that the actor is rejecting the object. The target and origin typically have no defined meaning. | A specialization of Reject in which the rejection is considered tentative.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Activity";\n } | {\n "@id": "Reject";\n } | {\n "@id": "TentativeReject";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n actor?: LdSet;\n object?: LdSet;\n target?: LdSet;\n result?: LdSet;\n origin?: LdSet;\n instrument?: LdSet;\n}\n\nexport interface Remove {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken. | Indicates that the actor is removing the object. If specified, the origin indicates the context from which the object is being removed.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Activity";\n } | {\n "@id": "Remove";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n actor?: LdSet;\n object?: LdSet;\n target?: LdSet;\n result?: LdSet;\n origin?: LdSet;\n instrument?: LdSet;\n}\n\nexport interface Undo {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken. | Indicates that the actor is undoing the object. In most cases, the object will be an Activity describing some previously performed action (for instance, a person may have previously "liked" an article but, for whatever reason, might choose to undo that like at some later point in time). The target and origin typically have no defined meaning.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Activity";\n } | {\n "@id": "Undo";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n actor?: LdSet;\n object?: LdSet;\n target?: LdSet;\n result?: LdSet;\n origin?: LdSet;\n instrument?: LdSet;\n}\n\nexport interface Update {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken. | Indicates that the actor has updated the object. Note, however, that this vocabulary does not define a mechanism for describing the actual set of modifications made to object. The target and origin typically have no defined meaning.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Activity";\n } | {\n "@id": "Update";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n actor?: LdSet;\n object?: LdSet;\n target?: LdSet;\n result?: LdSet;\n origin?: LdSet;\n instrument?: LdSet;\n}\n\nexport interface View {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken. | Indicates that the actor has viewed the object.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Activity";\n } | {\n "@id": "View";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n actor?: LdSet;\n object?: LdSet;\n target?: LdSet;\n result?: LdSet;\n origin?: LdSet;\n instrument?: LdSet;\n}\n\nexport interface Listen {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken. | Indicates that the actor has listened to the object.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Activity";\n } | {\n "@id": "Listen";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n actor?: LdSet;\n object?: LdSet;\n target?: LdSet;\n result?: LdSet;\n origin?: LdSet;\n instrument?: LdSet;\n}\n\nexport interface Read {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken. | Indicates that the actor has read the object.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Activity";\n } | {\n "@id": "Read";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n actor?: LdSet;\n object?: LdSet;\n target?: LdSet;\n result?: LdSet;\n origin?: LdSet;\n instrument?: LdSet;\n}\n\nexport interface Move {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken. | Indicates that the actor has moved object from origin to target. If the origin or target are not specified, either can be determined by context.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Activity";\n } | {\n "@id": "Move";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n actor?: LdSet;\n object?: LdSet;\n target?: LdSet;\n result?: LdSet;\n origin?: LdSet;\n instrument?: LdSet;\n}\n\nexport interface Travel {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken. | Instances of IntransitiveActivity are a subtype of Activity representing intransitive actions. The object property is therefore inappropriate for these activities. | Indicates that the actor is traveling to target from origin. Travel is an IntransitiveObject whose actor specifies the direct object. If the target or origin are not specified, either can be determined by context.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Activity";\n } | {\n "@id": "IntransitiveActivity";\n } | {\n "@id": "Travel";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n actor?: LdSet;\n object?: LdSet;\n target?: LdSet;\n result?: LdSet;\n origin?: LdSet;\n instrument?: LdSet;\n}\n\nexport interface Announce {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken. | Indicates that the actor is calling the target\'s attention the object. The origin typically has no defined meaning.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Activity";\n } | {\n "@id": "Announce";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n actor?: LdSet;\n object?: LdSet;\n target?: LdSet;\n result?: LdSet;\n origin?: LdSet;\n instrument?: LdSet;\n}\n\nexport interface Block {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken. | Indicates that the actor is ignoring the object. The target and origin typically have no defined meaning. | Indicates that the actor is blocking the object. Blocking is a stronger form of Ignore. The typical use is to support social systems that allow one user to block activities or content of other users. The target and origin typically have no defined meaning.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Activity";\n } | {\n "@id": "Ignore";\n } | {\n "@id": "Block";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n actor?: LdSet;\n object?: LdSet;\n target?: LdSet;\n result?: LdSet;\n origin?: LdSet;\n instrument?: LdSet;\n}\n\nexport interface Flag {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken. | Indicates that the actor is "flagging" the object. Flagging is defined in the sense common to many social platforms as reporting content as being inappropriate for any number of reasons.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Activity";\n } | {\n "@id": "Flag";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n actor?: LdSet;\n object?: LdSet;\n target?: LdSet;\n result?: LdSet;\n origin?: LdSet;\n instrument?: LdSet;\n}\n\nexport interface Dislike {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken. | Indicates that the actor dislikes the object.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Activity";\n } | {\n "@id": "Dislike";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n actor?: LdSet;\n object?: LdSet;\n target?: LdSet;\n result?: LdSet;\n origin?: LdSet;\n instrument?: LdSet;\n}\n\nexport interface Question {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken. | Instances of IntransitiveActivity are a subtype of Activity representing intransitive actions. The object property is therefore inappropriate for these activities. | Represents a question being asked. Question objects are an extension of IntransitiveActivity. That is, the Question object is an Activity, but the direct object is the question itself and therefore it would not contain an object property. Either of the anyOf and oneOf properties MAY be used to express possible answers, but a Question object MUST NOT have both properties. \n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Activity";\n } | {\n "@id": "IntransitiveActivity";\n } | {\n "@id": "Question";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n actor?: LdSet;\n object?: LdSet;\n target?: LdSet;\n result?: LdSet;\n origin?: LdSet;\n instrument?: LdSet;\n closed?: LdSet;\n}\n\nexport interface Application {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | Describes a software application.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Application";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n}\n\nexport interface Group {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | Represents a formal or informal collective of Actors.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Group";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n}\n\nexport interface Organization {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | Represents an organization.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Organization";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n}\n\nexport interface Person {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | Represents an individual person.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Person";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n}\n\nexport interface Service {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | Represents a service of any kind.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Service";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n}\n\nexport interface Relationship {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | Describes a relationship between two individuals. The subject and object properties are used to identify the connected individuals. See 5.2 Representing Relationships Between Entities for additional information. \n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Relationship";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n /**\n * On a Relationship object, the relationship property identifies the kind of relationship that exists between subject and object.\n */\n relationship?: LdSet;\n}\n\nexport interface Article {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | Represents any kind of multi-paragraph written work.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Article";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n}\n\nexport interface Document {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | Represents a document of any kind.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Document";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n}\n\nexport interface Audio {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | Represents a document of any kind. | Represents an audio document of any kind.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Document";\n } | {\n "@id": "Audio";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n}\n\nexport interface Image {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | Represents a document of any kind. | An image document of any kind\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Document";\n } | {\n "@id": "Image";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n}\n\nexport interface Video {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | Represents a document of any kind. | Represents a video document of any kind. \n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Document";\n } | {\n "@id": "Video";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n}\n\nexport interface Note {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | Represents a short written work typically less than a single paragraph in length.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Note";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n}\n\nexport interface Page {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | Represents a document of any kind. | Represents a Web Page.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Document";\n } | {\n "@id": "Page";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n}\n\nexport interface Event {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | Represents any kind of event.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Event";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n}\n\nexport interface Place {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | Represents a logical or physical location. See 5.3 Representing Places for additional information.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Place";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n /**\n * Indicates the accuracy of position coordinates on a Place objects. Expressed in properties of percentage. e.g. "94.0" means "94.0% accurate".\n */\n accuracy?: number;\n /**\n * Indicates the altitude of a place. The measurement units is indicated using the units property. If units is not specified, the default is assumed to be "m" indicating meters. \n */\n altitude?: number;\n /**\n * The latitude of a place | The longitude of a place\n */\n latitude?: LdSet;\n /**\n * The radius from the given latitude and longitude for a Place. The units is expressed by the units property. If units is not specified, the default is assumed to be "m" indicating "meters".\n */\n radius?: number;\n}\n\nexport interface Mention {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * A Link is an indirect, qualified reference to a resource identified by a URL. The fundamental model for links is established by [ RFC5988]. Many of the properties defined by the Activity Vocabulary allow values that are either instances of Object or Link. When a Link is used, it establishes a qualified relation connecting the subject (the containing object) to the resource identified by the href. Properties of the Link are properties of the reference as opposed to properties of the resource. | A specialized Link that represents an @mention.\n */\n type: LdSet<{\n "@id": "Link";\n } | {\n "@id": "Mention";\n }>;\n /**\n * The target resource pointed to by a Link.\n */\n href?: string;\n /**\n * A link relation associated with a Link. The value MUST conform to both the [HTML5] and [RFC5988] "link relation" definitions. In the [HTML5], any string not containing the "space" U+0020, "tab" (U+0009), "LF" (U+000A), "FF" (U+000C), "CR" (U+000D) or "," (U+002C) characters can be used as a valid link relation.\n */\n rel?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n name?: LdSet;\n /**\n * Hints as to the language used by the target resource. Value MUST be a [BCP47] Language-Tag.\n */\n hreflang?: string;\n /**\n * On a Link, specifies a hint as to the rendering height in device-independent pixels of the linked resource.\n */\n height?: number;\n /**\n * On a Link, specifies a hint as to the rendering width in device-independent pixels of the linked resource.\n */\n width?: number;\n preview?: LdSet;\n}\n\nexport interface Profile {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | A Profile is a content object that describes another Object, typically used to describe Actor Type objects. The describes property is used to reference the object being described by the profile.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Profile";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n /**\n * On a Profile object, the describes property identifies the object described by the Profile.\n */\n describes?: ActivityPubObject;\n}\n\nexport interface Tombstone {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n /**\n * Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. | A Tombstone represents a content object that has been deleted. It can be used in Collections to signify that there used to be an object at this position, but it has been deleted.\n */\n type: LdSet<{\n "@id": "Object";\n } | {\n "@id": "Tombstone";\n }>;\n attachment?: LdSet;\n attributedTo?: LdSet;\n audience?: LdSet;\n content?: LdSet;\n context?: LdSet;\n name?: LdSet;\n /**\n * The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.\n */\n endTime?: string;\n generator?: LdSet;\n icon?: LdSet;\n image?: LdSet;\n inReplyTo?: LdSet;\n location?: LdSet;\n preview?: LdSet;\n /**\n * The date and time at which the object was published\n */\n published?: string;\n /**\n * Identifies a Collection containing objects considered to be responses to this object.\n */\n replies?: Collection;\n /**\n * The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.\n */\n startTime?: string;\n summary?: LdSet;\n tag?: LdSet;\n /**\n * The date and time at which the object was updated\n */\n updated?: string;\n url?: LdSet;\n to?: LdSet;\n bto?: LdSet;\n cc?: LdSet;\n bcc?: LdSet;\n /**\n * When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.\n */\n mediaType?: string;\n /**\n * When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object\'s approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").\n */\n duration?: string;\n /**\n * On a Tombstone object, the formerType property identifies the type of the object that was deleted.\n */\n formerType?: LdSet;\n /**\n * On a Tombstone object, the deleted property is a timestamp for when the object was deleted.\n */\n deleted?: string;\n}\n\n', }; diff --git a/packages/schema-converter-shex/test/testData/simple.ts b/packages/schema-converter-shex/test/testData/simple.ts index 4f7511f..9841dfc 100644 --- a/packages/schema-converter-shex/test/testData/simple.ts +++ b/packages/schema-converter-shex/test/testData/simple.ts @@ -8,13 +8,15 @@ export const simple: TestData = { shexc: ` PREFIX foaf: PREFIX xsd: + PREFIX ns: PREFIX example: example:EmployeeShape { # An has: foaf:givenName xsd:string+, # at least one givenName. foaf:familyName xsd:string, # one familyName. foaf:phone IRI*, # any number of phone numbers. - foaf:mbox IRI # one FOAF mbox. + foaf:mbox IRI, # one FOAF mbox. + ns:someDouble xsd:double # just to test the data type. } `, sampleTurtle: ` @@ -24,7 +26,8 @@ export const simple: TestData = { foaf:givenName "Robert"^^xsd:string, "Taylor"^^xsd:string ; foaf:familyName "Johnson"^^xsd:string ; # no phone number needed - foaf:mbox + foaf:mbox ; + ns:someDouble "1e4"^^xsd:double ; . `, baseNode: "http://a.example/Employee7", @@ -47,7 +50,11 @@ export const simple: TestData = { "@id": "http://xmlns.com/foaf/0.1/mbox", "@type": "@id", }, + someDouble: { + "@id": "https://ns.example/someDouble", + "@type": "http://www.w3.org/2001/XMLSchema#double", + }, }, successfulTypings: - 'import { LdSet, LdoJsonldContext } from "@ldo/ldo"\n\nexport interface Employee {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n givenName: LdSet;\n familyName: string;\n phone?: LdSet<{\n "@id": string;\n }>;\n mbox: {\n "@id": string;\n };\n}\n\n', + 'import { LdSet, LdoJsonldContext } from "@ldo/ldo"\n\nexport interface Employee {\n "@id"?: string;\n "@context"?: LdoJsonldContext;\n givenName: LdSet;\n familyName: string;\n phone?: LdSet<{\n "@id": string;\n }>;\n mbox: {\n "@id": string;\n };\n someDouble: number;\n}\n\n', };