Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updated model names in preview version to be consistent with stable version to avoid breaking changes in client side code #4338

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@
"200": {
"description": "A successful call results in a list of recognized entities returned for each valid document",
"schema": {
"$ref": "#/definitions/EntitiesBatchResultV2dot1"
"$ref": "#/definitions/EntitiesBatchResult"
}
},
"default": {
Expand Down Expand Up @@ -486,13 +486,13 @@
}
}
},
"EntitiesBatchResultV2dot1": {
"EntitiesBatchResult": {
"type": "object",
"properties": {
"documents": {
"type": "array",
"items": {
"$ref": "#/definitions/EntitiesBatchResultItemV2dot1"
"$ref": "#/definitions/EntitiesBatchResultItem"
},
"readOnly": true
},
Expand All @@ -505,7 +505,7 @@
}
}
},
"EntitiesBatchResultItemV2dot1": {
"EntitiesBatchResultItem": {
"type": "object",
"properties": {
"id": {
Expand All @@ -517,13 +517,13 @@
"description": "Recognized entities in the document.",
"type": "array",
"items": {
"$ref": "#/definitions/EntityRecordV2dot1"
"$ref": "#/definitions/EntityRecord"
},
"readOnly": true
}
}
},
"EntityRecordV2dot1": {
"EntityRecord": {
"type": "object",
"properties": {
"name": {
Expand All @@ -534,7 +534,7 @@
"description": "List of instances this entity appears in the text.",
"type": "array",
"items": {
"$ref": "#/definitions/MatchRecordV2dot1"
"$ref": "#/definitions/MatchRecord"
}
},
"wikipediaLanguage": {
Expand Down Expand Up @@ -564,7 +564,7 @@
}
}
},
"MatchRecordV2dot1": {
"MatchRecord": {
"type": "object",
"properties": {
"text": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ The current release is `release_2_0`.
A preview release `release_2_1` is also available.

``` yaml
tag: release_2_0
tag: release_2_1
add-credentials: true
```

Expand Down