forked from RESOStandards/web-api-commander
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsample-web-api-server.core.2.0.0.resoscript
498 lines (402 loc) · 23.8 KB
/
sample-web-api-server.core.2.0.0.resoscript
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
<?xml version="1.0" encoding="utf-8" ?>
<!--
>>> To be used as a template for Web API Server Core 2.0.0 Certification <<<
NOTES:
* Anything marked REQUIRED should be filled in.
* Anything not market REQUIRED shouldn't have to be changed.
* Some items are marked OPTIONAL.
* Any item that has a blank Url will be skipped (which will be printed in the results).
Contact josh@reso.org with further questions.
-->
<!DOCTYPE OutputScript [
<!ELEMENT OutputScript (RESOScriptVersion|ClientSettings|Parameters|Requests)*>
<!ELEMENT RESOScriptVersion (#PCDATA)>
<!ELEMENT ClientSettings (WebAPIURI|AuthenticationType|BearerToken|ClientIdentification|ClientSecret|TokenURI|ClientScope)*>
<!ELEMENT WebAPIURI (#PCDATA)>
<!ELEMENT AuthenticationType (#PCDATA)>
<!ELEMENT BearerToken (#PCDATA)>
<!ELEMENT ClientIdentification (#PCDATA)>
<!ELEMENT ClientSecret (#PCDATA)>
<!ELEMENT TokenURI (#PCDATA)>
<!ELEMENT ClientScope (#PCDATA)>
<!ELEMENT Parameters (Parameter)*>
<!ELEMENT Parameter (#PCDATA)>
<!ATTLIST Parameter
Name CDATA #REQUIRED
Value CDATA #REQUIRED>
<!ELEMENT Requests (Request)*>
<!ELEMENT Request (#PCDATA)>
<!ATTLIST Request
OutputFile CDATA #REQUIRED
RequestId CDATA #REQUIRED
Url CDATA #REQUIRED>
]>
<OutputScript>
<!--
############################################################
Metadata
############################################################-->
<!-- The current version of this RESOScript -->
<RESOScriptVersion>3.1.0</RESOScriptVersion>
<!--
############################################################
Client Settings
TODO: deprecate ClientSettings and move them to Parameters
############################################################-->
<ClientSettings>
<!-- URLS -->
<WebAPIURI><!--REQUIRED: URI of your Web API Service Root goes here --></WebAPIURI>
<!-- Credentials -->
<!-- AuthenticationType
This is the OAuth2 grant_type.
Use "authorization_code" for BearerToken and "client_credentials" for Client Credentials.
See:
* https://www.oauth.com/oauth2-servers/access-tokens/authorization-code-request/
* https://www.oauth.com/oauth2-servers/access-tokens/client-credentials/
-->
<!-- Grant Type: authorization_code -->
<AuthenticationType>authorization_code</AuthenticationType>
<BearerToken><!-- REQUIRED: Your BearerToken goes here if using Access Tokens --></BearerToken>
<!-- Grant Type: client_credentials -->
<AuthenticationType>client_credentials</AuthenticationType>
<ClientIdentification><!-- REQUIRED: Your client_id value if using Client Credentials--></ClientIdentification>
<ClientSecret><!-- REQUIRED: Your client_secret value if using Client Credentials--></ClientSecret>
<TokenURI><!-- REQUIRED: Your token endpoint URI--></TokenURI>
<ClientScope>
<!--OPTIONAL - your client scope. See: https://www.oauth.com/oauth2-servers/access-tokens/client-credentials/ -->
</ClientScope>
</ClientSettings>
<!--
############################################################
Parameters Section - add your testing variables here
############################################################-->
<Parameters>
<!--
############################################################
Service Configuration
############################################################-->
<!-- REQUIRED: Core - The name of the resource being tested. Should not be a path. -->
<Parameter Name="EndpointResource" Value="Property"/>
<!--
############################################################
Required Fields and Values
############################################################-->
<!-- Note: some of the required values already have sample values provided. See later sections for their values.-->
<!-- REQUIRED: Core - Substitute key name from your Resource here, either Key or KeyNumeric -->
<Parameter Name="KeyField" Value="ListingKey"/>
<!-- REQUIRED: Core - Provide a value for the Primary Key Field on your server.
If your server uses StringKeys, make sure to wrap the value in single quotes. -->
<Parameter Name="KeyValue" Value="'abc123'"/>
<!-- REQUIRED: Core - Integer Field. Should be one of: Type="Edm.Int16", Type="Edm.Int32", or Type="Edm.Int64" -->
<Parameter Name="IntegerField" Value="BedroomsTotal"/>
<!-- REQUIRED: Edm.Decimal field -->
<Parameter Name="DecimalField" Value="ListPrice" />
<!-- REQUIRED: Core - Enumerated Field for Single-Value Testing -->
<Parameter Name="SingleValueLookupField" Value="StandardStatus"/>
<Parameter Name="SingleLookupValue" Value="ActiveUnderContract"/>
<Parameter Name="SingleValueLookupNamespace" Value="org.reso.metadata.enums.StandardStatus"/>
<!-- REQUIRED: Core - Enumerated Field for Multi-value testing -->
<Parameter Name="MultipleValueLookupField" Value="AccessibilityFeatures"/>
<Parameter Name="MultipleValueLookupNamespace" Value="org.reso.metadata.enums.AccessibilityFeatures"/>
<Parameter Name="MultipleLookupValue1" Value="AccessibleApproachWithRamp"/>
<Parameter Name="MultipleLookupValue2" Value="Visitable"/>
<!-- REQUIRED: Core - Date Field for comparisons. Should be Type="Edm.Date" -->
<Parameter Name="DateField" Value="ListingContractDate"/>
<Parameter Name="TimestampField" Value="OriginalEntryTimestamp"/>
<!--
############################################################
Sample Field Values
############################################################-->
<!-- Core: IntegerField Sample Values-->
<Parameter Name="IntegerValueLow" Value="1"/>
<Parameter Name="IntegerValueHigh" Value="15"/>
<Parameter Name="IntegerNotFound" Value="99"/>
<!-- Core: DecimalField Sample Values -->
<Parameter Name="DecimalValueLow" Value="0.00"/>
<Parameter Name="DecimalValueHigh" Value="1234567.89"/>
<!-- Core: Integer Field for "not" testing -->
<Parameter Name="FilterNotField" Value="*Parameter_IntegerField*"/>
<Parameter Name="FilterNotValue" Value="-1"/>
<!-- Core: Date Fields for testing -->
<!-- TODO: randomly generate these values -->
<Parameter Name="DateTimeValue" Value="2019-12-31T23:55:55-09:00"/>
<Parameter Name="DateValue" Value="2019-12-31"/>
<!--
############################################################
HTTP Code Testing
############################################################-->
<!-- 200 Response OK: This should always work! No need to change it -->
<Parameter Name="200_OK" Value="*Parameter_EndpointResource*"/>
<!-- REQUIRED: 400 Bad Request - Adjust to something that produces a 400 response if this doesn't work -->
<Parameter Name="400BadRequest" Value="*Parameter_EndpointResource*?$filter=BadField eq 'SoBad'"/>
<!-- REQUIRED: 404 Not Found - You shouldn't need to change this -->
<Parameter Name="404NotFound" Value="ResourceNotFound"/>
<!--
############################################################
Constants and Computed Values - Do Not Change
############################################################-->
<!-- For Top, Skip, and Sort Testing -->
<Parameter Name="TopCount" Value="5"/>
<Parameter Name="SortCount" Value="20"/>
<!-- Required resource lists for Standard Resource Names requirement -->
<Parameter Name="WebAPI102_RequiredResourceList" Value="Property,Member,Office,Media"/>
<!-- Allowed Resources - Update to 1.8 once it's approved -->
<Parameter Name="DD17_WellKnownResourceList"
Value="Property,Member,Office,Contacts,ContactListings,HistoryTransactional,InternetTracking,Media,OpenHouse,OUID,Prospecting,Queue,Rules,SavedSearch,Showing,Teams,TeamMembers,ContactListingNotes,OtherPhone,PropertyGreenVerification,PropertyPowerProduction,PropertyRooms,PropertyUnitTypes,SocialMedia"/>
<!-- Computed Has Value - uses SingleValueLookup field -->
<Parameter Name="FilterHasValue" Value="*Parameter_SingleValueLookupValue*"/>
<Parameter Name="FilterHasLookupNamespace" Value="*Parameter_SingleValueLookupNamespace*"/>
<Parameter Name="FilterHasLookupValue" Value="*Parameter_SingleLookupValue*"/>
<!-- Computed Enumeration Values - do not change -->
<Parameter Name="SingleValueLookupValue"
Value="*Parameter_SingleValueLookupNamespace*'*Parameter_SingleLookupValue*'"/>
<Parameter Name="FilterHasValueLookupValue"
Value="*Parameter_FilterHasLookupNamespace*'*Parameter_FilterHasLookupValue*'"/>
<Parameter Name="MultipleValueLookupValue1"
Value="*Parameter_MultipleValueLookupNamespace*'*Parameter_MultipleLookupValue1*'"/>
<Parameter Name="MultipleValueLookupValue2"
Value="*Parameter_MultipleValueLookupNamespace*'*Parameter_MultipleLookupValue2*'"/>
</Parameters>
<!--
############################################################
Requests Section - Queries used during testing,
DO NOT CHANGE
############################################################-->
<Requests>
<Request
RequestId="metadata-request"
OutputFile="metadata-request.xml"
Url="*ClientSettings_WebAPIURI*/$metadata?$format=application/xml"
/>
<Request
RequestId="service-document"
OutputFile="service-document.json"
Url="*ClientSettings_WebAPIURI*/"
/>
<Request
RequestId="fetch-by-key"
OutputFile="fetch-by-key.json"
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*(*Parameter_KeyValue*)?$select=*Parameter_KeyField*"
/>
<Request
RequestId="select"
OutputFile="select.json"
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$select=*Parameter_KeyField*,*Parameter_IntegerField*"
/>
<Request
RequestId="top"
OutputFile="top.json"
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$select=*Parameter_KeyField*&$top=*Parameter_TopCount*"
/>
<Request
RequestId="skip"
OutputFile="skip.json"
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$select=*Parameter_KeyField*&$top=*Parameter_TopCount*"
/>
<Request
RequestId="count"
OutputFile="count.json"
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$count=true"
/>
<Request
RequestId="orderby-timestamp-asc"
OutputFile="orderby-timestamp-asc.json"
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_SortCount*&$select=*Parameter_KeyField*,*Parameter_IntegerField*,*Parameter_TimestampField*&$orderby=*Parameter_TimestampField* asc"
/>
<Request
RequestId="orderby-timestamp-desc"
OutputFile="orderby-timestamp-desc.json"
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_SortCount*&$select=*Parameter_KeyField*,*Parameter_IntegerField*,*Parameter_TimestampField*&$orderby=*Parameter_TimestampField* desc"
/>
<Request
RequestId="orderby-timestamp-asc-filter-int-gt"
OutputFile="orderby-timestamp-asc-filter.json"
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_SortCount*&$select=*Parameter_KeyField*,*Parameter_IntegerField*,*Parameter_TimestampField*&$orderby=*Parameter_TimestampField* asc&$filter=*Parameter_IntegerField* gt *Parameter_IntegerValueLow*"
/>
<Request
RequestId="orderby-timestamp-desc-filter-int-gt"
OutputFile="orderby-timestamp-desc-filter-int-gt.json"
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_SortCount*&$select=*Parameter_KeyField*,*Parameter_IntegerField*,*Parameter_TimestampField*&$orderby=*Parameter_TimestampField* desc&$filter=*Parameter_IntegerField* gt *Parameter_IntegerValueLow*"
/>
<Request
RequestId="filter-int-and"
OutputFile="filter-int-and.json"
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_KeyField*,*Parameter_IntegerField*&$filter=*Parameter_IntegerField* gt *Parameter_IntegerValueLow* and *Parameter_IntegerField* lt *Parameter_IntegerValueHigh*"
/>
<Request
RequestId="filter-int-or"
OutputFile="filter-int-or.json"
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_KeyField*,*Parameter_IntegerField*&$filter=*Parameter_IntegerField* lt *Parameter_IntegerValueHigh* or *Parameter_IntegerField* gt *Parameter_IntegerValueLow*"
/>
<Request
RequestId="filter-int-not"
OutputFile="filter-int-not.json"
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_KeyField*,*Parameter_IntegerField*&$filter=not (*Parameter_FilterNotField* le *Parameter_FilterNotValue*)"
/>
<Request
RequestId="filter-int-eq"
OutputFile="filter-int-eq.json"
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_KeyField*,*Parameter_IntegerField*&$filter=*Parameter_IntegerField* eq *Parameter_IntegerValueLow*"
/>
<Request
RequestId="filter-int-ne"
OutputFile="filter-int-ne.json"
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_KeyField*,*Parameter_IntegerField*&$filter=*Parameter_IntegerField* ne *Parameter_IntegerValueLow*"
/>
<Request
RequestId="filter-int-gt"
OutputFile="filter-int-gt.json"
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_KeyField*,*Parameter_IntegerField*&$filter=*Parameter_IntegerField* gt *Parameter_IntegerValueLow*"
/>
<Request
RequestId="filter-int-ge"
OutputFile="filter-int-ge.json"
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_KeyField*,*Parameter_IntegerField*&$filter=*Parameter_IntegerField* ge *Parameter_IntegerValueLow*"
/>
<Request
RequestId="filter-int-lt"
OutputFile="filter-int-lt.json"
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_KeyField*,*Parameter_IntegerField*&$filter=*Parameter_IntegerField* lt *Parameter_IntegerValueLow*"
/>
<Request
RequestId="filter-int-le"
OutputFile="filter-int-le.json"
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_KeyField*,*Parameter_IntegerField*&$filter=*Parameter_IntegerField* le *Parameter_IntegerValueLow*"
/>
<Request
RequestId="filter-decimal-eq"
OutputFile="filter-decimal-eq.json"
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_KeyField*,*Parameter_DecimalField*&$filter=*Parameter_DecimalField* eq *Parameter_DecimalValueLow*"
/>
<Request
RequestId="filter-decimal-ne"
OutputFile="filter-decimal-ne.json"
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_KeyField*,*Parameter_DecimalField*&$filter=*Parameter_DecimalField* ne *Parameter_DecimalValueLow*"
/>
<Request
RequestId="filter-decimal-gt"
OutputFile="filter-decimal-gt.json"
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_KeyField*,*Parameter_DecimalField*&$filter=*Parameter_DecimalField* gt *Parameter_DecimalValueLow*"
/>
<Request
RequestId="filter-decimal-ge"
OutputFile="filter-decimal-ge.json"
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_KeyField*,*Parameter_DecimalField*&$filter=*Parameter_DecimalField* ge *Parameter_DecimalValueLow*"
/>
<Request
RequestId="filter-decimal-lt"
OutputFile="filter-decimal-lt.json"
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_KeyField*,*Parameter_DecimalField*&$filter=*Parameter_DecimalField* lt *Parameter_DecimalValueHigh*"
/>
<Request
RequestId="filter-decimal-le"
OutputFile="filter-decimal-le.json"
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_KeyField*,*Parameter_DecimalField*&$filter=*Parameter_DecimalField* le *Parameter_DecimalValueHigh*"
/>
<Request
RequestId="filter-date-eq"
OutputFile="filter-date-eq.json"
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_KeyField*,*Parameter_DateField*&$filter=*Parameter_DateField* eq *Parameter_DateValue*"
/>
<Request
RequestId="filter-date-ne"
OutputFile="filter-date-ne.json"
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_KeyField*,*Parameter_DateField*&$filter=*Parameter_DateField* ne *Parameter_DateValue*"
/>
<Request
RequestId="filter-date-gt"
OutputFile="filter-date-gt.json"
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_KeyField*,*Parameter_DateField*&$filter=*Parameter_DateField* gt *Parameter_DateValue*"
/>
<Request
RequestId="filter-date-ge"
OutputFile="filter-date-ge.json"
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_KeyField*,*Parameter_DateField*&$filter=*Parameter_DateField* ge *Parameter_DateValue*"
/>
<Request
RequestId="filter-date-lt"
OutputFile="filter-date-le.json"
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_KeyField*,*Parameter_DateField*&$filter=*Parameter_DateField* lt *Parameter_DateValue*"
/>
<Request
RequestId="filter-date-le"
OutputFile="filter-date-le.json"
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_KeyField*,*Parameter_DateField*&$filter=*Parameter_DateField* le *Parameter_DateValue*"
/>
<Request
RequestId="filter-datetime-eq"
OutputFile="filter-datetime-eq.json"
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_KeyField*,*Parameter_TimestampField*&$filter=*Parameter_TimestampField* eq *Parameter_DateTimeValue*"
/>
<Request
RequestId="filter-datetime-ne"
OutputFile="filter-datetime-ne.json"
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_KeyField*,*Parameter_TimestampField*&$filter=*Parameter_TimestampField* ne *Parameter_DateTimeValue*"
/>
<Request
RequestId="filter-datetime-gt"
OutputFile="filter-datetime-gt.json"
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_KeyField*,*Parameter_TimestampField*&$filter=*Parameter_TimestampField* gt *Parameter_DateTimeValue*"
/>
<Request
RequestId="filter-datetime-ge"
OutputFile="filter-datetime-ge.json"
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_KeyField*,*Parameter_TimestampField*&$filter=*Parameter_TimestampField* ge *Parameter_DateTimeValue*"
/>
<Request
RequestId="filter-datetime-lt"
OutputFile="filter-datetime-lt.json"
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_KeyField*,*Parameter_TimestampField*&$filter=*Parameter_TimestampField* lt now()"
/>
<Request
RequestId="filter-datetime-le"
OutputFile="filter-datetime-le.json"
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_KeyField*,*Parameter_TimestampField*&$filter=*Parameter_TimestampField* le now()"
/>
<Request
RequestId="filter-enum-single-has"
OutputFile="filter-enum-single-has.json"
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_KeyField*,*Parameter_SingleValueLookupField*&$filter=*Parameter_SingleValueLookupField* has *Parameter_SingleValueLookupValue*"
/>
<Request
RequestId="filter-enum-single-eq"
OutputFile="filter-enum-single-eq.json"
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_KeyField*,*Parameter_SingleValueLookupField*&$filter=*Parameter_SingleValueLookupField* eq *Parameter_SingleValueLookupValue*"
/>
<Request
RequestId="filter-enum-single-ne"
OutputFile="filter-enum-single-ne.json"
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_KeyField*,*Parameter_SingleValueLookupField*&$filter=*Parameter_SingleValueLookupField* ne *Parameter_SingleValueLookupValue*"
/>
<Request
RequestId="filter-enum-multi-has"
OutputFile="filter-enum-multi-has.json"
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_KeyField*,*Parameter_MultipleValueLookupField*&$filter=*Parameter_MultipleValueLookupField* has *Parameter_MultipleValueLookupValue1*"
/>
<Request
RequestId="filter-enum-multi-has-and"
OutputFile="filter-enum-multi-has-and.json"
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_KeyField*,*Parameter_MultipleValueLookupField*&$filter=*Parameter_MultipleValueLookupField* has *Parameter_MultipleValueLookupValue1* and *Parameter_MultipleValueLookupField* has *Parameter_MultipleValueLookupValue2*"
/>
<Request
RequestId="filter-coll-enum-any"
OutputFile="filter-coll-enum-any.json"
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_KeyField*,*Parameter_MultipleValueLookupField*&$filter=*Parameter_MultipleValueLookupField*/any(enum:enum eq *Parameter_MultipleValueLookupValue1*)"
/>
<Request
RequestId="filter-coll-enum-all"
OutputFile="filter-coll-enum-all.json"
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_KeyField*,*Parameter_MultipleValueLookupField*&$filter=*Parameter_MultipleValueLookupField*/all(enum:enum eq *Parameter_MultipleValueLookupValue1*)"
/>
<Request
RequestId="response-code-400"
OutputFile="response-code-400.json"
Url="ClientSettings_WebAPIURI*/*Parameter_400BadRequest*"
/>
<Request
RequestId="response-code-404"
OutputFile="response-code-404.json"
Url="*ClientSettings_WebAPIURI*/*Parameter_404NotFound*"
/>
</Requests>
</OutputScript>