Skip to content

Commit 69542b5

Browse files
committed
edits per acrolinx review
1 parent 9a740fd commit 69542b5

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/healthcare-apis/fhir/overview-of-search.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -148,30 +148,30 @@ By default, the FHIR service in Azure Health Data Services is set to lenient han
148148

149149
The FHIR service supports search queries using the `_include` and `_revinclude` parameters. These parameters allow for the retrieval of reference resources in the search results.
150150

151-
The `_include` search parameter enables the retrieval of a particular clinical resource, as well as any other resources that it references. When included in the query, the `_include` parameter will return both the specified resource and its referenced resources.
151+
The `_include` search parameter enables the retrieval of a particular clinical resource, and any other resources that it references. When included in the query, the `_include` parameter returns both the specified resource and its referenced resources.
152152

153-
The `_revinclude` search parameter allows for the retrieval of a resource along with any other resources that reference it. This provides a way to search for resources based on their relationships with other resources. For detailed information on `_include` and `_revinclude` in search parameters, refer to the [FHIR Search Documentation](https://www.hl7.org/fhir/R4/search.html#revinclude).
153+
The `_revinclude` search parameter allows for the retrieval of a resource along with any other resources that reference it, providing a way to search for resources based on their relationships with other resources. For detailed information on `_include` and `_revinclude` in search parameters, refer to the [FHIR Search Documentation](https://www.hl7.org/fhir/R4/search.html#revinclude).
154154

155155
##### Request parameters
156156

157157
When executing a search request with the `_include` and `_revinclude` parameter, the following optional parameters can be used to control the count.
158158

159159
| **Name** | **Value** | **Description** |
160160
| -------- | --------- | --------------- |
161-
| `_count` | Default value: 10, Max value: 1000 | The value represents the number of targeted resources to be retrieved per request. The value can be set up to 1000. When the parameter is not provided, it is set to 10. |
161+
| `_count` | Default value: 10, Max value: 1000 | The value represents the number of targeted resources to be retrieved per request. The value can be set up to 1000. When the parameter isn't provided, it's set to 10. |
162162
| `_includesCount` | Default value: 1000 | The value represents the number of matching resources referenced by target resources to be retrieved per request. |
163163

164-
For matched items from `_include` and `_revinclude` searches, a maximum of 1000 items will be included in the response. If the number of matched items exceeds this limit, a related link will be provided that encompasses the $include operation. The provided link will allow you to move through the complete result set.
164+
For matched items from `_include` and `_revinclude` searches, a maximum of 1,000 items is included in the response. If the number of matched items exceeds this limit, a related link is provided which encompasses the $include operation. The provided link allows you to move through the complete result set.
165165

166166
Example:
167167

168-
In the following example, a search request for Observations is made for Patient with Identifier 123 .
168+
In the following example, a search request for Observations is made for Patient with Identifier 123.
169169

170170
```
171171
GET {{FHIR_URL}}/Observation?subject.identifier=123&_include=Observation:subject&_includesCount=10
172172
```
173173

174-
The response returned will have observation data for Patient 123. The matched resource references are given 10 per page, and a link is provided which contains the $include operation. You can follow the link to move through the result set.
174+
The response returned contains observation data for Patient 123. The matched resource references are given 10 per page, and a link is provided which contains the $include operation. You can follow the link to move through the result set.
175175

176176
```
177177
{

0 commit comments

Comments
 (0)