Azure Monitor · Schema

LocalizableString

Application InsightsCloudLogsMetricsMonitoringObservability

Properties

Name Type Description
value string The invariant value.
localizedValue string The display name.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-monitor-localizablestring-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LocalizableString",
  "title": "LocalizableString",
  "type": "object",
  "required": [
    "value"
  ],
  "properties": {
    "value": {
      "type": "string",
      "description": "The invariant value."
    },
    "localizedValue": {
      "type": "string",
      "description": "The display name."
    }
  }
}