ConnStringValueTypePair

Database connection string value to type pair.

AzureComputeFaaSFunctionsServerless

Properties

Name Type Description
type string Type of database.
value string Value of pair.
View JSON Schema on GitHub

JSON Schema

azure-function-apps-conn-string-value-type-pair-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/azure-function-apps/refs/heads/main/json-schema/azure-function-apps-conn-string-value-type-pair-schema.json",
  "title": "ConnStringValueTypePair",
  "description": "Database connection string value to type pair.",
  "type": "object",
  "properties": {
    "type": {
      "description": "Type of database.",
      "enum": [
        "MySql",
        "SQLServer",
        "SQLAzure",
        "Custom",
        "NotificationHub",
        "ServiceBus",
        "EventHub",
        "ApiHub",
        "DocDb",
        "RedisCache",
        "PostgreSQL"
      ],
      "type": "string",
      "x-ms-enum": {
        "modelAsString": false,
        "name": "ConnectionStringType"
      }
    },
    "value": {
      "description": "Value of pair.",
      "type": "string"
    }
  },
  "required": [
    "value",
    "type"
  ]
}