Skip to content

Commit f7e624a

Browse files
authored
Fix JSON capitalization per maud-lv's comment
1 parent e3d8e76 commit f7e624a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/azure-app-configuration/howto-import-export-data.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Import brings configuration data into an App Configuration store from an existin
2222

2323
This guide shows how to import App Configuration data:
2424

25-
- [from a configuration file in Json, YAML or Properties](#import-data-from-a-configuration-file)
25+
- [from a configuration file in JSON, YAML or Properties](#import-data-from-a-configuration-file)
2626
- [from an App Configuration store](#import-data-from-an-app-configuration-store)
2727
- [from Azure App Service](#import-data-from-azure-app-service)
2828

@@ -44,7 +44,7 @@ From the Azure portal, follow these steps:
4444

4545
| Parameter | Description | Example |
4646
|--------------|-----------------------------------------------------------------------------------------|----------|
47-
| File type | Select the file type for import: YAML, Properties, or JSON. | *Json* |
47+
| File type | Select the file type for import: YAML, Properties, or JSON. | *JSON* |
4848

4949
1. Click the **Browse** button, and select the file to import.
5050

@@ -85,7 +85,7 @@ From the Azure CLI, follow the steps below. If you don't have the Azure CLI inst
8585

8686
| Parameter | Description | Example |
8787
|------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------|
88-
| `--separator` | Optional. The separator is the delimiter for flattening the key-values to Json/YAML. It's required for exporting hierarchical structure and will be ignored for property files and feature flags. Select one of the following options: `.`, `,`, `:`, `;`, `/`, `-`, `_`, ``. | `;` |
88+
| `--separator` | Optional. The separator is the delimiter for flattening the key-values to JSON/YAML. It's required for exporting hierarchical structure and will be ignored for property files and feature flags. Select one of the following options: `.`, `,`, `:`, `;`, `/`, `-`, `_`, ``. | `;` |
8989
| `--prefix` | Optional. A key prefix is the beginning part of a key. Prefixes can be used to manage groups of key-values in a configuration store. This prefix will be appended to the front of the "key" property of each imported key-value. | `TestApp:` |
9090
| `--label` | Optional. Enter a label that will be assigned to your imported key-values. | `prod` |
9191
| `--content-type` | Optional. Enter `appconfig/kvset` or `application/json` to state that the imported content consists of a Key Vault reference or a JSON file. | `application/json` |
@@ -265,7 +265,7 @@ Export writes configuration data stored in App Configuration to another destinat
265265
266266
This guide shows how to export App Configuration data:
267267
268-
- [to a configuration file in Json, YAML or Properties](#export-data-to-a-configuration-file)
268+
- [to a configuration file in JSON, YAML or Properties](#export-data-to-a-configuration-file)
269269
- [to an App Configuration store](#export-data-to-an-app-configuration-store)
270270
- [to an Azure App Service resource](#export-data-to-azure-app-service)
271271
@@ -323,7 +323,7 @@ From the Azure CLI, follow the steps below. If you don't have the Azure CLI inst
323323
324324
| Parameter | Description | Example |
325325
|------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------|
326-
| `--separator` | Optional. The separator is the delimiter for flattening the key-values to Json/YAML. It's required for exporting hierarchical structure and will be ignored for property files and feature flags. Select one of the following options: `.`, `,`, `:`, `;`, `/`, `-`, `_`, `—`. | `;` |
326+
| `--separator` | Optional. The separator is the delimiter for flattening the key-values to JSON/YAML. It's required for exporting hierarchical structure and will be ignored for property files and feature flags. Select one of the following options: `.`, `,`, `:`, `;`, `/`, `-`, `_`, `—`. | `;` |
327327
| `--prefix` | Optional. Prefix to be trimmed from each key-value's "key" property. A key prefix is the beginning part of a key. Prefixes can be used to manage groups of key-values in a configuration store. Prefix will be ignored for feature flags. | `TestApp:` |
328328
329329
Example: export all key-values and feature flags with label "prod" to a JSON file.

0 commit comments

Comments
 (0)