-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathOrg.OData.Repeatability.V1.json
More file actions
64 lines (64 loc) · 2.75 KB
/
Copy pathOrg.OData.Repeatability.V1.json
File metadata and controls
64 lines (64 loc) · 2.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"$Version": "4.0",
"$Reference": {
"https://oasis-tcs.github.io/odata-vocabularies/vocabularies/Org.OData.Core.V1.json": {
"$Include": [
{
"$Namespace": "Org.OData.Core.V1",
"$Alias": "Core"
}
]
}
},
"Org.OData.Repeatability.V1": {
"$Alias": "Repeatability",
"@Core.Description": "Terms describing repeatable requests",
"@Core.Links": [
{
"rel": "alternate",
"href": "https://oasis-tcs.github.io/odata-vocabularies/vocabularies/Org.OData.Repeatability.V1.xml"
},
{
"rel": "latest-version",
"href": "https://oasis-tcs.github.io/odata-vocabularies/vocabularies/Org.OData.Repeatability.V1.json"
},
{
"rel": "describedby",
"href": "https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Repeatability.V1.md"
}
],
"Supported": {
"$Kind": "Term",
"$Type": "Core.Tag",
"$DefaultValue": true,
"$AppliesTo": [
"EntityContainer",
"Action",
"ActionImport",
"EntitySet"
],
"@Core.Description": "Repeatable requests are supported for the annotated service, entity set, or action",
"@Core.LongDescription": "Annotations on entity set or action import level override an annotation on entity container level, and an annotation on action level override an annotation on action import level. "
},
"DeleteWithClientIDSupported": {
"$Kind": "Term",
"$Type": "Core.Tag",
"$DefaultValue": true,
"$AppliesTo": [
"EntityContainer"
],
"@Core.Description": "Deletion of remembered requests by client ID is supported",
"@Core.LongDescription": "Clients that specify a `RepeatabilityClientID` header can delete all remembered requests for that client ID by sending a\n\n`DELETE $RepeatableRequestsWithClientID/{Repeatability-Client-ID}`\n\nrequest to the service root."
},
"DeleteWithRequestIDSupported": {
"$Kind": "Term",
"$Type": "Core.Tag",
"$DefaultValue": true,
"$AppliesTo": [
"EntityContainer"
],
"@Core.Description": "Deletion of remembered requests by request ID is supported",
"@Core.LongDescription": "Clients can delete a single remembered request by sending a\n\n`DELETE $RepeatableRequestWithRequestID/{Repeatability-Request-ID}`\n\nrequest to the service root."
}
}
}