You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/healthcare-apis/fhir/using-rest-client.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,7 @@ Create a new file in Visual Studio Code. Enter a `GET` request command line in t
32
32
33
33
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.
34
34
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.
Copy file name to clipboardExpand all lines: articles/healthcare-apis/fhir/validation-against-profiles.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ Per specification, Mode can be specified with `$validate`, such as create and up
22
22
There are different ways provided for you to validate resource:
23
23
- Option 1: Validate an existing resource with the validate operation.
24
24
- 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.
26
26
27
27
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.
28
28
@@ -55,7 +55,7 @@ In this example, you're validating the existing Patient resource `a6e11662-def8-
55
55
]
56
56
}
57
57
```
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.
59
59
60
60
```json
61
61
{
@@ -99,7 +99,7 @@ If the resource isn't valid, you get an error code and an error message with det
99
99
100
100
In this example, the resource didn't conform to the provided Patient profile, which required a patient identifier value and gender.
101
101
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`.
0 commit comments