Skip to content

Commit 5c8d635

Browse files
author
adam-dupaski
committed
Proofread
1 parent caed7e1 commit 5c8d635

20 files changed

Lines changed: 26 additions & 26 deletions

File tree

content/en/docs/appstore/connectors/sap/sap-odata-connector.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ The OData Connector for SAP solutions module gives you access to additional acti
275275
This section describes all the actions of the OData Connector for SAP solutions. They are categorized as being either for [entity and attribute manipulation](#EntityManipulation) or [helper actions](#HelperActions).
276276

277277
{{% alert color="info" %}}
278-
Version 5.3.0 of the OData Connector for SAP solutions adds support for services using OData version 4. Currently, only **Get List** and **Get Entry** are supported for services using OData version 4.
278+
Version 5.3.0 of the OData Connector for SAP solutions adds support for services using OData v4. Currently, only **Get List** and **Get Entry** are supported for services using OData v4.
279279
{{% /alert %}}
280280

281281
Some inputs are necessary for the connector to work and these are marked **(required)**. Other inputs are not required, but in some cases this must be made explicit by setting them to *empty*.

content/en/docs/catalog/consume/consume.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Access to the data is through the published REST OData service, with reading, qu
5353
The following operations are affected by using external entities in a consuming app:
5454

5555
* Aggregations – you can count a list of external entities, but you cannot show other aggregations such as sum, average, minimum, and maximum.
56-
* [OData version 3.0](https://www.odata.org/documentation/odata-version-3-0/) does not support these operations; the only exception is that you can use the [aggregate list](/refguide/aggregate-list/) microflow activity, which for all aggregations except **Count** will retrieve everything and perform the aggregation in memory
56+
* [OData v3.0](https://www.odata.org/documentation/odata-version-3-0/) does not support these operations; the only exception is that you can use the [aggregate list](/refguide/aggregate-list/) microflow activity, which for all aggregations except **Count** will retrieve everything and perform the aggregation in memory
5757
* [XPath](/refguide/xpath/) – you can use XPath to filter external entities; all XPath constructs are supported, except the following:
5858
* Three conversions from date/time: `day-of-year-from-dateTime`, `weekday-from-dateTime`, and `week-from-dateTime`
5959
* Aggregations: `avg()`, `max()`, `min()`, and `sum()`

content/en/docs/refguide/modeling/integration/odata-services/consumed-odata-services/consumed-odata-service.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ Click the **Properties** tab for the consumed OData service which displays the p
139139
* **Service ID** – The unique identifier of the service in the Catalog.
140140
* **Application ID** – The unique identifier of the application that the service was published from in the Catalog.
141141
* **Metadata** – The contents of the metadata file defining the service.
142-
* **OData version** – The OData version: can be OData 3 or OData 4.
142+
* **OData version** – The OData version (can be v3 or v4).
143143
* **Use QuerySegment** – When set to `No`, the application retrieves data using a `GET HTTP` method and places data query arguments in the URL's query string. When set to `Yes`, then a `POST HTTP` method is used, `/$query` is appended to the resource path of the URL, and the query string is provided as the request body. This enables limiting the length of the URL and avoiding potential problems with the systems involved. This feature is not available for OData v3 or if the consumed service explicitly indicates that it is not supported. For details, see [Passing Query Options in the Request Body](https://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part2-url-conventions.html#sec_PassingQueryOptionsintheRequestBody) in the OData specification.
144144

145145
## 3 Updating or Switching a Consumed OData Service {#updating}

content/en/docs/refguide/modeling/integration/odata-services/published-odata-services/_index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ In Studio Pro, entities can be exposed as [OData resources](/refguide/published-
1212

1313
A published OData service is a REST service with an OpenAPI contract, which means that OpenAPI compatible REST clients can easily interact with it.
1414

15-
The standard used for OData in Mendix is [OData version 4](http://www.odata.org/documentation), which returns data in JSON format.
15+
The standard used for OData in Mendix is [OData v4](http://www.odata.org/documentation), which returns data in JSON format.
1616

17-
The option to publish [OData version 3](http://www.odata.org/documentation/odata-version-3-0) services, which return data in Atom XML format, is deprecated and will be removed in a future version.
17+
The option to publish [OData v3](http://www.odata.org/documentation/odata-version-3-0) services, which return data in Atom XML format, is deprecated and will be removed in a future version.
1818

1919
Not all parts of the standard are implemented. If something is not documented here, it is has not yet been added.
2020

@@ -63,7 +63,7 @@ This list gives an overview of all published attributes and associations.
6363

6464
### 2.6 Enumerations
6565

66-
This list gives an overview of all [enumerations](/refguide/enumerations/) that are published by the service (for OData version 4 only). When a published entity has an attribute with an enumeration type then the enumeration appears in this list. The list does not appear when there are no published enumerations. There is no need to add enumerations yourself, because Studio Pro will add them when needed.
66+
This list gives an overview of all [enumerations](/refguide/enumerations/) that are published by the service (for OData v4 only). When a published entity has an attribute with an enumeration type then the enumeration appears in this list. The list does not appear when there are no published enumerations. There is no need to add enumerations yourself, because Studio Pro will add them when needed.
6767

6868
Click **Edit** to change the exposed name of the enumeration (the name as it appears to clients of the service) and to provide documentation.
6969

content/en/docs/refguide/modeling/integration/odata-services/published-odata-services/published-odata-attribute.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ The type of the attribute.
3838

3939
### 2.6 Exposed As
4040

41-
This field is shown when the type is an enumeration that was previously exposed as a string, and only for OData version 4. Change the value to **Enumeration** to publish the enumeration. This informs clients of the possible values of this attribute.
41+
This field is shown when the type is an enumeration that was previously exposed as a string, and only for OData v4. Change the value to **Enumeration** to publish the enumeration. This informs clients of the possible values of this attribute.
4242

4343
### 2.7 Capabilities
4444

content/en/docs/refguide/modeling/integration/odata-services/published-odata-services/published-odata-resource.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ Having an [index](/refguide/indexes/) for the key attribute(s) makes retrieving
107107
You can set unique and required constraints using [validation rules](/refguide/validation-rules/).
108108

109109
{{% alert color="info" %}}
110-
Selecting more than one attribute as the key is only available for published OData services that use OData version 4.
110+
Selecting more than one attribute as the key is only available for published OData services that use OData v4.
111111
{{% /alert %}}
112112

113113
## 9 Capabilities {#capabilities}

content/en/docs/refguide/modeling/integration/odata-services/wrap-services-odata.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ When you use a microflow to provide data, any security constraints are applied t
9292

9393
* **HttpRequest** – The first accepted parameter is an HTTP request of the entity type **System.HttpRequest**. This parameter is optional.
9494

95-
When a consumer sends a request to the published OData service, the `HttpRequest` string attribute *Uri* will contain the OData query that consumer requested. Based on that information, the microflow needs to decide what should be returned. For more information on how an OData v4 requests work, see [OData Version 4.0. Part 2: URL Conections Plus Errata 03](https://docs.oasis-open.org/odata/odata/v4.0/odata-v4.0-part2-url-conventions.html).
95+
When a consumer sends a request to the published OData service, the `HttpRequest` string attribute *Uri* will contain the OData query that consumer requested. Based on that information, the microflow needs to decide what should be returned. For more information on how an OData v4 requests work, see [OData v4.0. Part 2: URL Conections Plus Errata 03](https://docs.oasis-open.org/odata/odata/v4.0/odata-v4.0-part2-url-conventions.html).
9696

9797
* **ODataResponse** – The second accepted parameter is an OData response of the entity type **System.ODataResponse**. This parameter is optional.
9898

content/en/docs/refguide7/desktop-modeler/integration/published-odata-services/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ In the Modeler, entities can be exposed as [OData resources](/refguide7/publishe
1313

1414
## 2 OData Version
1515

16-
The standard used for OData in Mendix is [OData version 3](http://www.odata.org/documentation/odata-version-3-0)) with the default representation set to Atom XML. Not all parts of the standard are implemented. If something is not documented here, it is has not yet been added.
16+
The standard used for OData in Mendix is [OData v3](http://www.odata.org/documentation/odata-version-3-0)) with the default representation set to Atom XML. Not all parts of the standard are implemented. If something is not documented here, it is has not yet been added.
1717

1818
## 3 Query Options
1919

content/en/docs/refguide8/modeling/integration/consumed-odata-services/consumed-odata-service.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ Click the **Properties** tab for the consumed OData service which displays the p
127127
* **Service ID** – the unique identifier of the service in the Catalog
128128
* **Application ID** – the unique identifier of the application that the service was published from in the Catalog
129129
* **Metadata** – the contents of the metadata file defining the service
130-
* **OData version** – the OData version: can be OData 3 or OData 4
130+
* **OData version** – the OData version (can be v3 or v4)
131131

132132
## 4 Updating or Switching a Consumed OData Service {#updating}
133133

content/en/docs/refguide8/modeling/integration/published-odata-services/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ aliases:
1616

1717
In Studio Pro, entities can be exposed as [OData resources](/refguide8/published-odata-resource/) by adding a new published OData service. You can expose any number of related resources in a published OData service. By default, the non-qualified names of entities are used in the URI to uniquely identify them, but you can override the name of the resource as well.
1818

19-
The standard used for OData in Mendix is [OData version 3](http://www.odata.org/documentation/odata-version-3-0) with the default representation set to Atom XML. Not all parts of the standard are implemented. If something is not documented here, it is has not yet been added.
19+
The standard used for OData in Mendix is [OData v3](http://www.odata.org/documentation/odata-version-3-0) with the default representation set to Atom XML. Not all parts of the standard are implemented. If something is not documented here, it is has not yet been added.
2020

2121
This document describes the options available to you when you create a published OData service, and ends with some runtime considerations.
2222

0 commit comments

Comments
 (0)