You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/oa/AccessChannelUpdateSimulateAction.d.ts
+38-36Lines changed: 38 additions & 36 deletions
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,9 @@ export declare type AccessChannelUpdateSimulateAction = {
26
26
*/
27
27
description?: string;
28
28
/**
29
-
* A unique url based identifier for the record
29
+
* A unique URI-based identifier for the record.
30
+
* `@id` properties are used as identifiers for compatibility with JSON-LD. The value of such a property must always be an absolute URI that provides a stable globally unique identifier for the resource, as described in [RFC3986](https://tools.ietf.org/html/rfc3986).
31
+
* The primary purpose of the URI format in this context is to provide natural namespacing for the identifier. Hence, the URI itself may not resolve to a valid endpoint, but must use a domain name controlled by the resource owner (the organisation responsible for the OpenActive open data feed).
30
32
*/
31
33
'@id'?: string;
32
34
/**
@@ -41,81 +43,81 @@ export declare type AccessChannelUpdateSimulateAction = {
41
43
*/
42
44
object?: oa.OrderOrSubClass|oa.Event_OrSubClass;
43
45
/**
44
-
* The startTime of something. For a reserved event or service (e.g. FoodEstablishmentReservation), the time that it is expected to start. For actions that span a period of time, when the action was performed. e.g. John wrote a book from *January* to December. For media, including audio and video, it's the time offset of the start of a clip within a larger file.\n\nNote that Event uses startDate/endDate instead of startTime/endTime, even when describing dates with times. This situation may be clarified in future revisions.
45
-
*/
46
-
startTime?: string;
47
-
/**
48
-
* The object that helped the agent perform the action. e.g. John wrote a book with *a pen*.
49
-
*/
50
-
instrument?: schema.ThingOrSubClass|string;
51
-
/**
52
-
* Indicates the current disposition of the Action.
* For failed actions, more information on the cause of the failure.
65
55
*/
66
-
target?: schema.EntryPointOrSubClass|string;
56
+
error?: schema.ThingOrSubClass|string;
67
57
/**
68
-
* The endTime of something. For a reserved event or service (e.g. FoodEstablishmentReservation), the time that it is expected to end. For actions that span a period of time, when the action was performed. e.g. John wrote a book from January to *December*. For media, including audio and video, it's the time offset of the end of a clip within a larger file.\n\nNote that Event uses startDate/endDate instead of startTime/endTime, even when describing dates with times. This situation may be clarified in future revisions.
58
+
* The location of, for example, where an event is happening, where an organization is located, or where an action takes place.
* For failed actions, more information on the cause of the failure.
62
+
* The endTime of something. For a reserved event or service (e.g. FoodEstablishmentReservation), the time that it is expected to end. For actions that span a period of time, when the action was performed. e.g. John wrote a book from January to *December*. For media, including audio and video, it's the time offset of the end of a clip within a larger file.\n\nNote that Event uses startDate/endDate instead of startTime/endTime, even when describing dates with times. This situation may be clarified in future revisions.
73
63
*/
74
-
error?: schema.ThingOrSubClass|string;
64
+
endTime?:string;
75
65
/**
76
-
* The result produced in the action. e.g. John wrote *a book*.
66
+
* The direct performer or driver of the action (animate or inanimate). e.g. *John* wrote a book.
* URL of a reference Web page that unambiguously indicates the item's identity. E.g. the URL of the item's Wikipedia page, Wikidata entry, or official website.
74
+
* Indicates the current disposition of the Action.
* Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role.
82
+
* The startTime of something. For a reserved event or service (e.g. FoodEstablishmentReservation), the time that it is expected to start. For actions that span a period of time, when the action was performed. e.g. John wrote a book from *January* to December. For media, including audio and video, it's the time offset of the start of a clip within a larger file.\n\nNote that Event uses startDate/endDate instead of startTime/endTime, even when describing dates with times. This situation may be clarified in future revisions.
93
83
*/
94
-
potentialAction?: schema.ActionOrSubClass|string;
84
+
startTime?:string;
95
85
/**
96
86
* Indicates a page (or other CreativeWork) for which this thing is the main entity being described. See [background notes](/docs/datamodel.html#mainEntityBackground) for details.
* An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally.
101
91
*/
102
92
additionalType?: string;
93
+
/**
94
+
* URL of the item.
95
+
*/
96
+
url?: string;
103
97
/**
104
98
* An alias for the item.
105
99
*/
106
100
alternateName?: string;
107
101
/**
108
-
* URL of the item.
102
+
* URL of a reference Web page that unambiguously indicates the item's identity. E.g. the URL of the item's Wikipedia page, Wikidata entry, or official website.
109
103
*/
110
-
url?: string;
104
+
sameAs?: string;
111
105
/**
112
-
* An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].
106
+
* Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role.
* A sub property of description. A short description of the item used to disambiguate from other, similar items. Information from other properties (in particular, name) may be necessary for the description to be useful for disambiguation.
117
115
*/
118
116
disambiguatingDescription?: string;
117
+
/**
118
+
* An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].
0 commit comments