The request
object defines the access to a server resource by specifying an OData service and an entity set.
A request
object has the following format:
<id>"
"service" : "
{
"type" : "request", // optional
"id" : "<service root>",
"entitySet" : "<entity set name>",
"selectProperties" : [ "<property name>"* ],
}
The properties used in the request
object denote the following:
Property |
Description |
---|---|
|
Unique ID of type string. |
|
Path to OData service root. The service root is defined by an absolute path on the OData server according to the following pattern: The |
|
Entity set that corresponds to the data source, for example, the SAP HANA view. |
|
Set of property names. The selected properties determine which properties of the entity are contained in the server response. Therefore, they also determine the analytical processing of the request on the server. |