Skip to content

Commit c2fa16c

Browse files
committed
markdown and editorial changes
1 parent 2c4e7e4 commit c2fa16c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

articles/healthcare-apis/fhir/using-rest-client.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Create a new file in Visual Studio Code. Enter a `GET` request command line in t
3232
3333
While you can use values such as the client ID directly in calls to the REST API, it's a good practice that you define a few variables for these values and use the variables instead.
3434

35-
In your `test.http` file, include the following information obtained from registering your application:
35+
In your `test.http` file, include the following information obtained from registering your application.
3636

3737
```
3838
### REST Client

articles/healthcare-apis/fhir/validation-against-profiles.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Per specification, Mode can be specified with `$validate`, such as create and up
2222
There are different ways provided for you to validate resource:
2323
- Option 1: Validate an existing resource with the validate operation.
2424
- Option 2: Validate a new resource with the validate operation.
25-
- Option 3: Validate on resource CREATE/ UPDATE using a header.
25+
- Option 3: Validate on resource CREATE or UPDATE using a header.
2626

2727
On the successful validation of an existing or new resource with the validate operation, the resource isn't persisted into the FHIR service. Use Option 3 to successfully persist validated resources to the FHIR service.
2828

@@ -55,7 +55,7 @@ In this example, you're validating the existing Patient resource `a6e11662-def8-
5555
]
5656
}
5757
```
58-
If the resource isn't valid, you get an error code and an error message with details on why the resource is invalid. An example `OperationOutcome` gets returned with error messages and could look like the following code example:
58+
If the resource isn't valid, you get an error code and an error message with details on why the resource is invalid. An example `OperationOutcome` gets returned with error messages and could look like the following code example.
5959

6060
```json
6161
{
@@ -99,7 +99,7 @@ If the resource isn't valid, you get an error code and an error message with det
9999

100100
In this example, the resource didn't conform to the provided Patient profile, which required a patient identifier value and gender.
101101

102-
If you'd like to specify a profile as a parameter, you can specify the canonical URL for the profile to validate against, such as the following example for the HL7 base profile for `heartrate`:
102+
If you'd like to specify a profile as a parameter, you can specify the canonical URL for the profile to validate against, such as the following example for the HL7 base profile for `heartrate`.
103103

104104
`GET https://myworkspace-myfhirserver.fhir.azurehealthcareapis.com/Observation/12345678/$validate?profile=http://hl7.org/fhir/StructureDefinition/heartrate`
105105

0 commit comments

Comments
 (0)