524 lines
26 KiB
XML
524 lines
26 KiB
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
|
|
<!--
|
|
>>> To be used as a template for Web API Server 1.0.2 Platinum 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>2.0.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="REQUIRED: YOUR RESOURCE GOES HERE, FOR EXAMPLE, Property" />
|
|
|
|
<!-- REQUIRED: Core - The DataSystems endpoint being tested
|
|
NOTE: the FULL DataSystems URL is required as it might not be relative to the Service Root. -->
|
|
<Parameter Name="EndpointDataSystem" Value="REQUIRED: YOUR DATA SYSTEMS ENDPOINT GOES HERE" />
|
|
|
|
<!--
|
|
############################################################
|
|
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="KeyOrKeyNumericField" Value="ListingKey" />
|
|
|
|
<!-- REQUIRED: Core - Provide a value for the KeyOrKeyNumeric from your server
|
|
NOTE: if you are using Key instead of KeyNumeric values, wrap your Key in quotes: 'myUniqueKey123' -->
|
|
<Parameter Name="KeyOrKeyNumericValue" Value="REQUIRED: YOUR KeyOrKeyNumericValue GOES HERE" />
|
|
|
|
<!-- REQUIRED: Core - Integer Field. Should be one of: Type="Edm.Int16", Type="Edm.Int32", or Type="Edm.Int64" -->
|
|
<Parameter Name="IntegerField" Value="BedroomsTotal" />
|
|
|
|
<!-- REQUIRED: Core - Enumerated Field for Single-Value Testing -->
|
|
<Parameter Name="SingleValueLookupField" Value="PropertyType" />
|
|
<Parameter Name="SingleLookupValue" Value="Residential" />
|
|
<Parameter Name="SingleValueLookupNamespace" Value="PropertyEnums.PropertyType" />
|
|
|
|
<!-- REQUIRED: Core - Enumerated Field for Multi-value testing -->
|
|
<Parameter Name="MultipleValueLookupField" Value="Appliances" />
|
|
<Parameter Name="MultipleValueLookupNamespace" Value="PropertyEnums.Appliances" />
|
|
<Parameter Name="MultipleLookupValue1" Value="Refrigerator" />
|
|
<Parameter Name="MultipleLookupValue2" Value="Stacked" />
|
|
|
|
<!-- REQUIRED: Bronze - Date Field for comparisons. Should be Type="Edm.Date" -->
|
|
<Parameter Name="DateField" Value="ListingContractDate" />
|
|
<Parameter Name="TimestampField" Value="ModificationTimestamp" />
|
|
|
|
<!--
|
|
############################################################
|
|
Sample Field Values
|
|
############################################################-->
|
|
|
|
<!-- IntegerField Sample Values-->
|
|
<Parameter Name="IntegerValueLow" Value="9" />
|
|
<Parameter Name="IntegerValueHigh" Value="15" />
|
|
<Parameter Name="IntegerNotFound" Value="-1" />
|
|
|
|
<!-- Integer Field for "not" testing -->
|
|
<Parameter Name="FilterNotField" Value="*Parameter_IntegerField*" />
|
|
<Parameter Name="FilterNotValue" Value="-1" />
|
|
|
|
<!-- Gold and Platinum: Date Fields for testing -->
|
|
<Parameter Name="DateTimeValue" Value="2018-12-31T23:55:55-09:00" />
|
|
<Parameter Name="DateValue" Value="2018-12-31" />
|
|
<Parameter Name="YearValue" Value="2018" />
|
|
<Parameter Name="MonthValue" Value="12" />
|
|
<Parameter Name="DayValue" Value="31" />
|
|
<Parameter Name="TimeValue" Value="23:55:55" />
|
|
<Parameter Name="HourValue" Value="23" />
|
|
<Parameter Name="MinuteValue" Value="55" />
|
|
<Parameter Name="SecondValue" Value="55" />
|
|
<Parameter Name="FractionalValue" Value="30" />
|
|
|
|
<!--
|
|
############################################################
|
|
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: 403 Forbidden - Set this to a restricted resource for the given credentials -->
|
|
<Parameter Name="403Forbidden" Value="Teams" />
|
|
|
|
<!-- REQUIRED: 404 Not Found - You shouldn't need to change this -->
|
|
<Parameter Name="404NotFound" Value="ResourceNotFound" />
|
|
|
|
<!-- REQUIRED: 501 Not Implemented - Set this to an OData query that hasn't been implemented on your server -->
|
|
<Parameter Name="501NotImplemented" Value="*Parameter_EndpointResource*?$search=red OR blue" />
|
|
|
|
|
|
<!--
|
|
############################################################
|
|
Constants and Computed Values - Do Not Change
|
|
############################################################-->
|
|
|
|
<!-- For Top, Skip, and Sort Testing -->
|
|
<Parameter Name="TopCount" Value="5" />
|
|
<Parameter Name="SortCount" Value="20" />
|
|
|
|
<!-- New Values for WS103 Testing -->
|
|
<Parameter Name="CastFieldType" Value="Edm.String" />
|
|
|
|
<!-- 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" />
|
|
|
|
<!-- Computed Has Value - uses SingleValueLookup field -->
|
|
<Parameter Name="FilterHasField" Value="*Parameter_SingleValueLookupField*" />
|
|
<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*'" />
|
|
|
|
<Parameter Name="OptionalMetadataFormatParameter" Value="?$format=application/xml" />
|
|
|
|
|
|
<!--
|
|
############################################################
|
|
Optional Parameters. You should not need these
|
|
############################################################-->
|
|
|
|
<!-- OPTIONAL: System Specific Additional Required Parameters for Queries. Leave Blank if none. -->
|
|
<Parameter Name="RequiredParameters" Value="" />
|
|
<Parameter Name="RequiredParametersFilter" Value="" />
|
|
|
|
</Parameters>
|
|
|
|
|
|
<!--
|
|
############################################################
|
|
Requests Section - Queries used during testing,
|
|
DO NOT CHANGE
|
|
############################################################-->
|
|
<Requests>
|
|
|
|
<Request
|
|
RequestId="REQ-WA103-END3"
|
|
OutputFile="REQ-WA103-END3.metadata.xml"
|
|
Url="*ClientSettings_WebAPIURI*/$metadata*Parameter_OptionalMetadataFormatParameter*"
|
|
/>
|
|
|
|
<Request
|
|
RequestId="REQ-WA103-END2"
|
|
OutputFile="REQ-WA103-END2.datasystem.json"
|
|
Url="*Parameter_EndpointDataSystem*"
|
|
/>
|
|
|
|
<Request
|
|
RequestId="REQ-WA103-QR1"
|
|
OutputFile="REQ-WA103-QR1.json"
|
|
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*(*Parameter_KeyOrKeyNumericValue*)?$select=*Parameter_KeyOrKeyNumericField*"
|
|
/>
|
|
|
|
<Request
|
|
RequestId="REQ-WA103-QR3"
|
|
OutputFile="REQ-WA103-QR3.json"
|
|
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_IntegerField*&$filter=*Parameter_IntegerField* ne null and *Parameter_IntegerField* gt *Parameter_IntegerValueLow**Parameter_RequiredParameters*"
|
|
/>
|
|
|
|
<Request
|
|
RequestId="REQ-WA103-QR4"
|
|
OutputFile="REQ-WA103-QR4.json"
|
|
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_IntegerField*&$filter=*Parameter_IntegerField* ne null and *Parameter_IntegerField* gt *Parameter_IntegerValueLow**Parameter_RequiredParameters*"
|
|
/>
|
|
|
|
<Request
|
|
RequestId="REQ-WA103-QR5"
|
|
OutputFile="REQ-WA103-QR5.json"
|
|
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_IntegerField*&$filter=*Parameter_IntegerField* ne null and *Parameter_IntegerField* gt *Parameter_IntegerValueLow**Parameter_RequiredParameters*"
|
|
/>
|
|
|
|
<Request
|
|
RequestId="REQ-WA103-QO1.1"
|
|
OutputFile="REQ-WA103-QO1.1.json"
|
|
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$SeLeCt=*Parameter_IntegerField*&$filter=*Parameter_IntegerField* ne null and *Parameter_IntegerField* eq *Parameter_IntegerValueLow**Parameter_RequiredParameters*"
|
|
/>
|
|
|
|
<Request
|
|
RequestId="REQ-WA103-QO1.2"
|
|
OutputFile="REQ-WA103-QO1.2.json"
|
|
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_IntegerField*&$FiLtEr=*Parameter_IntegerField* ne null and *Parameter_IntegerField* eq *Parameter_IntegerValueLow**Parameter_RequiredParameters*"
|
|
/>
|
|
|
|
<Request
|
|
RequestId="REQ-WA103-QO1.3"
|
|
OutputFile="REQ-WA103-QO1.3.json"
|
|
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_SortCount*&$select=*Parameter_IntegerField*&$filter=*Parameter_IntegerField* ne null and *Parameter_IntegerField* gt *Parameter_IntegerValueLow**Parameter_RequiredParameters*&$OrDeRbY=*Parameter_IntegerField* asc"
|
|
/>
|
|
|
|
<Request
|
|
RequestId="REQ-WA103-QO1.4"
|
|
OutputFile="REQ-WA103-QO1.4.json"
|
|
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_SortCount*&$select=*Parameter_IntegerField*&$filter=*Parameter_IntegerField* ne null and *Parameter_IntegerField* gt *Parameter_IntegerValueLow**Parameter_RequiredParameters*&$oRdErBy=*Parameter_IntegerField* desc"
|
|
/>
|
|
|
|
<Request
|
|
RequestId="REQ-WA103-QO2"
|
|
OutputFile="REQ-WA103-QO2"
|
|
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_IntegerField*&$filter=*Parameter_IntegerField* ne null and *Parameter_IntegerField* eq *Parameter_IntegerValueLow**Parameter_RequiredParameters*"
|
|
/>
|
|
|
|
<Request
|
|
RequestId="REQ-WA103-QO3"
|
|
OutputFile="REQ-WA103-QO3"
|
|
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_IntegerField*&$filter=*Parameter_IntegerField* ne null and *Parameter_IntegerField* ne null and *Parameter_IntegerField* ne *Parameter_IntegerValueLow**Parameter_RequiredParameters*"
|
|
/>
|
|
|
|
<Request
|
|
RequestId="REQ-WA103-QO4"
|
|
OutputFile="REQ-WA103-QO4"
|
|
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_IntegerField*&$filter=*Parameter_IntegerField* ne null and *Parameter_IntegerField* gt *Parameter_IntegerValueLow**Parameter_RequiredParameters*"
|
|
/>
|
|
|
|
<Request
|
|
RequestId="REQ-WA103-QO5"
|
|
OutputFile="REQ-WA103-QO5.json"
|
|
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_IntegerField*&$filter=*Parameter_IntegerField* ne null and *Parameter_IntegerField* ge *Parameter_IntegerValueLow**Parameter_RequiredParameters*"
|
|
/>
|
|
|
|
<Request
|
|
RequestId="REQ-WA103-QO6"
|
|
OutputFile="REQ-WA103-QO6.json"
|
|
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_IntegerField*&$filter=*Parameter_IntegerField* ne null and *Parameter_IntegerField* lt *Parameter_IntegerValueLow**Parameter_RequiredParameters*"
|
|
/>
|
|
|
|
<Request
|
|
RequestId="REQ-WA103-QO7"
|
|
OutputFile="REQ-WA103-QO7.json"
|
|
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_IntegerField*&$filter=*Parameter_IntegerField* ne null and *Parameter_IntegerField* le *Parameter_IntegerValueLow**Parameter_RequiredParameters*"
|
|
/>
|
|
|
|
<Request
|
|
RequestId="REQ-WA103-QO9"
|
|
OutputFile="REQ-WA103-QO9.json"
|
|
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_IntegerField*&$filter=*Parameter_IntegerField* ne null and *Parameter_IntegerField* gt *Parameter_IntegerValueLow* and *Parameter_IntegerField* lt *Parameter_IntegerValueHigh**Parameter_RequiredParameters*"
|
|
/>
|
|
|
|
<Request
|
|
RequestId="REQ-WA103-QO10"
|
|
OutputFile="REQ-WA103-QO10.json"
|
|
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_IntegerField*&$filter=*Parameter_IntegerField* ne null and *Parameter_IntegerField* gt *Parameter_IntegerValueHigh* or *Parameter_IntegerField* lt *Parameter_IntegerValueLow**Parameter_RequiredParameters*"
|
|
/>
|
|
|
|
<Request
|
|
RequestId="REQ-WA103-QO11"
|
|
OutputFile="REQ-WA103-QO11.json"
|
|
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_IntegerField*&$filter=*Parameter_IntegerField* ne null and not(*Parameter_FilterNotField* le *Parameter_FilterNotValue*)*Parameter_RequiredParameters*"
|
|
/>
|
|
|
|
<Request
|
|
RequestId="REQ-WA103-QO25"
|
|
OutputFile="REQ-WA103-QO25.json"
|
|
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_TimestampField*&$filter=*Parameter_TimestampField* ne null and date(*Parameter_TimestampField*) gt *Parameter_DateValue**Parameter_RequiredParameters*"
|
|
/>
|
|
|
|
<Request
|
|
RequestId="REQ-WA103-QO26"
|
|
OutputFile="REQ-WA103-QO26.json"
|
|
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_TimestampField*&$filter=*Parameter_TimestampField* ne null and time(*Parameter_TimestampField*) lt *Parameter_TimeValue**Parameter_RequiredParameters*"
|
|
/>
|
|
|
|
<Request
|
|
RequestId="REQ-WA103-QO26.2"
|
|
OutputFile="REQ-WA103-QO26.2.json"
|
|
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_TimestampField*&$filter=*Parameter_TimestampField* ne null and *Parameter_TimestampField* lt *Parameter_DateTimeValue**Parameter_RequiredParameters*"
|
|
/>
|
|
|
|
<Request
|
|
RequestId="REQ-WA103-QO27"
|
|
OutputFile="REQ-WA103-QO27.json"
|
|
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_TimestampField*&$filter=*Parameter_TimestampField* ne null and *Parameter_TimestampField* le now()*Parameter_RequiredParameters*"
|
|
/>
|
|
|
|
<Request
|
|
RequestId="REQ-WA103-QM7"
|
|
OutputFile="REQ-WA103-QM7.json"
|
|
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_KeyOrKeyNumericField*,*Parameter_SingleValueLookupField*&$filter=*Parameter_SingleValueLookupField* ne null and *Parameter_SingleValueLookupField* has *Parameter_SingleValueLookupValue**Parameter_RequiredParameters*"
|
|
/>
|
|
|
|
<Request
|
|
RequestId="REQ-WA103-QM8"
|
|
OutputFile="REQ-WA103-QM8.json"
|
|
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_KeyOrKeyNumericField*,*Parameter_MultipleValueLookupField*&$filter=*Parameter_MultipleValueLookupField* ne null and *Parameter_MultipleValueLookupField* has *Parameter_MultipleValueLookupValue1**Parameter_RequiredParameters*"
|
|
/>
|
|
|
|
<Request
|
|
RequestId="REQ-WA103-QM8.2"
|
|
OutputFile="REQ-WA103-QM8.2.json"
|
|
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_KeyOrKeyNumericField*,*Parameter_MultipleValueLookupField*&$filter=*Parameter_MultipleValueLookupField* ne null and *Parameter_MultipleValueLookupField* has *Parameter_MultipleValueLookupValue1* and *Parameter_MultipleValueLookupField* has *Parameter_MultipleValueLookupValue2**Parameter_RequiredParameters*"
|
|
/>
|
|
|
|
<Request
|
|
RequestId="REQ-WA103-QO8"
|
|
OutputFile="REQ-WA103-QO8.json"
|
|
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_FilterHasField*&$filter=*Parameter_FilterHasField* ne null and *Parameter_FilterHasField* has *Parameter_FilterHasValueLookupValue**Parameter_RequiredParameters*"
|
|
/>
|
|
|
|
<Request
|
|
RequestId="REQ-WA103-QO28.1"
|
|
OutputFile="REQ-WA103-QO28.1.json"
|
|
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_SortCount*&$select=*Parameter_IntegerField*,*Parameter_TimestampField*&$orderby=*Parameter_TimestampField* asc&$filter=*Parameter_IntegerField* ne null and *Parameter_IntegerField* gt *Parameter_IntegerValueLow**Parameter_RequiredParameters*"
|
|
/>
|
|
|
|
<Request
|
|
RequestId="REQ-WA103-QO28.2"
|
|
OutputFile="REQ-WA103-QO28.2.json"
|
|
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_SortCount*&$select=*Parameter_IntegerField*,*Parameter_TimestampField*&$orderby=*Parameter_TimestampField* asc"
|
|
/>
|
|
|
|
<Request
|
|
RequestId="REQ-WA103-QO28.3"
|
|
OutputFile="REQ-WA103-QO28.3.json"
|
|
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_SortCount*&$select=*Parameter_IntegerField*,*Parameter_TimestampField*&$orderby=*Parameter_TimestampField* desc&$filter=*Parameter_IntegerField* ne null and *Parameter_IntegerField* gt *Parameter_IntegerValueLow**Parameter_RequiredParameters*"
|
|
/>
|
|
|
|
<Request
|
|
RequestId="REQ-WA103-QO28.4"
|
|
OutputFile="REQ-WA103-QO28.4.json"
|
|
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_SortCount*&$select=*Parameter_IntegerField*,*Parameter_TimestampField*&$orderby=*Parameter_TimestampField* desc"
|
|
/>
|
|
|
|
<Request
|
|
RequestId="REQ-WA103-QO18.1"
|
|
OutputFile="REQ-WA103-QO18.1.json"
|
|
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_DateField*&$filter=*Parameter_DateField* ne null and year(*Parameter_DateField*) eq *Parameter_YearValue**Parameter_RequiredParameters*"
|
|
/>
|
|
|
|
<Request
|
|
RequestId="REQ-WA103-QO18.2"
|
|
OutputFile="REQ-WA103-QO18.2.json"
|
|
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_TimestampField*&$filter=*Parameter_TimestampField* ne null and year(*Parameter_TimestampField*) eq *Parameter_YearValue**Parameter_RequiredParameters*"
|
|
/>
|
|
|
|
<Request
|
|
RequestId="REQ-WA103-QO19.1"
|
|
OutputFile="REQ-WA103-QO19.1.json"
|
|
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_DateField*&$filter=*Parameter_DateField* ne null and month(*Parameter_DateField*) eq *Parameter_MonthValue**Parameter_RequiredParameters*"
|
|
/>
|
|
|
|
<Request
|
|
RequestId="REQ-WA103-QO19.2"
|
|
OutputFile="REQ-WA103-QO19.2.json"
|
|
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_TimestampField*&$filter=*Parameter_TimestampField* ne null and month(*Parameter_TimestampField*) eq *Parameter_MonthValue**Parameter_RequiredParameters*"
|
|
/>
|
|
|
|
<Request
|
|
RequestId="REQ-WA103-QO20.1"
|
|
OutputFile="REQ-WA103-QO20.1.json"
|
|
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_DateField*&$filter=*Parameter_DateField* ne null and day(*Parameter_DateField*) eq *Parameter_DayValue**Parameter_RequiredParameters*"
|
|
/>
|
|
|
|
<Request
|
|
RequestId="REQ-WA103-QO20.2"
|
|
OutputFile="REQ-WA103-QO20.2.json"
|
|
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_TimestampField*&$filter=*Parameter_TimestampField* ne null and day(*Parameter_TimestampField*) eq *Parameter_DayValue**Parameter_RequiredParameters*"
|
|
/>
|
|
|
|
<Request
|
|
RequestId="REQ-WA103-QO21"
|
|
OutputFile="REQ-WA103-QO21.json"
|
|
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_TimestampField*&$filter=*Parameter_TimestampField* ne null and hour(*Parameter_TimestampField*) eq *Parameter_HourValue**Parameter_RequiredParameters*"
|
|
/>
|
|
|
|
<Request
|
|
RequestId="REQ-WA103-QO22"
|
|
OutputFile="REQ-WA103-QO22.json"
|
|
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_TimestampField*&$filter=*Parameter_TimestampField* ne null and minute(*Parameter_TimestampField*) gt *Parameter_MinuteValue**Parameter_RequiredParameters*"
|
|
/>
|
|
|
|
<Request
|
|
RequestId="REQ-WA103-QO23"
|
|
OutputFile="REQ-WA103-QO23.json"
|
|
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_TimestampField*&$filter=*Parameter_TimestampField* ne null and second(*Parameter_TimestampField*) lt *Parameter_SecondValue**Parameter_RequiredParameters*"
|
|
/>
|
|
|
|
<Request
|
|
RequestId="REQ-WA103-QO24"
|
|
OutputFile="REQ-WA103-QO24.json"
|
|
Url="*ClientSettings_WebAPIURI*/*Parameter_EndpointResource*?$top=*Parameter_TopCount*&$select=*Parameter_TimestampField*&$filter=*Parameter_TimestampField* ne null and fractionalseconds(*Parameter_TimestampField*) lt *Parameter_FractionalValue**Parameter_RequiredParameters*"
|
|
/>
|
|
|
|
<Request
|
|
RequestId="REQ-WA103-END1"
|
|
OutputFile="REQ-WA103-END1_Service.json"
|
|
Url="*ClientSettings_WebAPIURI*/"
|
|
/>
|
|
|
|
|
|
<!-- RESPONSE CODE SUPPORT -->
|
|
<Request
|
|
RequestId="REQ-WA103-RC3"
|
|
OutputFile="REQ-WA103-RC05_200OKRequest.json"
|
|
Url="ClientSettings_WebAPIURI*/*Parameter_200_OK*"
|
|
/>
|
|
|
|
<Request
|
|
RequestId="REQ-WA103-RC5"
|
|
OutputFile="REQ-WA103-RC05_400BadRequest.json"
|
|
Url="ClientSettings_WebAPIURI*/*Parameter_400BadRequest*"
|
|
/>
|
|
|
|
<Request
|
|
RequestId="REQ-WA103-RC06"
|
|
OutputFile="REQ-WA103-RC06_403Forbidden_Generic.json"
|
|
Url="ClientSettings_WebAPIURI*/*Parameter_403Forbidden*"
|
|
/>
|
|
|
|
<Request
|
|
RequestId="REQ-WA103-RC07"
|
|
OutputFile="REQ-WA103-RC07_404NotFound.json"
|
|
Url="*ClientSettings_WebAPIURI*/*Parameter_404NotFound*"
|
|
/>
|
|
|
|
<Request
|
|
RequestId="REQ-WA103-RC11"
|
|
OutputFile="REQ-WA103-RC11_501NotImplemented.json"
|
|
Url="*ClientSettings_WebAPIURI*/*Parameter_501NotImplemented*"
|
|
/>
|
|
|
|
</Requests>
|
|
</OutputScript>
|