Skip to content

Commit b72db0a

Browse files
committed
Small clarification
1 parent e308135 commit b72db0a

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

articles/healthcare-apis/azure-api-for-fhir/store-profiles-in-fhir.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,11 +68,11 @@ Profiles are also specified by various Implementation Guides (IGs). Some common
6868

6969
To store profiles in Azure API for FHIR, you can `PUT` the `StructureDefinition` with the profile content in the body of the request. An update or a conditional update are both good methods to store profiles on the FHIR service. Use the conditional update if you are unsure which to use.
7070

71-
`PUT http://<your Azure API for FHIR base URL>/StructureDefinition/profile-id`
71+
Standard `PUT`: `PUT http://<your Azure API for FHIR base URL>/StructureDefinition/profile-id`
7272

7373
**or**
7474

75-
`PUT http://<your Azure API for FHIR base URL>/StructureDefinition?url=http://sample-profile-url`
75+
Conditional update: `PUT http://<your Azure API for FHIR base URL>/StructureDefinition?url=http://sample-profile-url`
7676

7777
```
7878
{

articles/healthcare-apis/fhir/store-profiles-in-fhir.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,13 +67,13 @@ Profiles are also specified by various Implementation Guides (IGs). Some common
6767

6868
### Storing profiles
6969

70-
To store profiles in Azure API for FHIR, you can `PUT` the `StructureDefinition` with the profile content in the body of the request. An update or a conditional update are both good methods to store profiles on the FHIR service. Use the conditional update if you are unsure which to use.
70+
To store profiles in Azure API for FHIR, you can `PUT` the `StructureDefinition` with the profile content in the body of the request. A standard `PUT` or a conditional update are both good methods to store profiles on the FHIR service. Use the conditional update if you are unsure which to use.
7171

72-
`PUT http://<your Azure API for FHIR base URL>/StructureDefinition/profile-id`
72+
Standard `PUT`: `PUT http://<your Azure API for FHIR base URL>/StructureDefinition/profile-id`
7373

7474
**or**
7575

76-
`PUT http://<your Azure API for FHIR base URL>/StructureDefinition?url=http://sample-profile-url`
76+
Conditional update: `PUT http://<your Azure API for FHIR base URL>/StructureDefinition?url=http://sample-profile-url`
7777

7878
```
7979
{

0 commit comments

Comments
 (0)