Azure Function Apps · JSON Structure

Azure Function Apps Conn String Value Type Pair Structure

Database connection string value to type pair.

Type: object Properties: 2 Required: 2
AzureComputeFaaSFunctionsServerless

ConnStringValueTypePair is a JSON Structure definition published by Azure Function Apps, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

type value

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/azure-function-apps/refs/heads/main/json-structure/azure-function-apps-conn-string-value-type-pair-structure.json",
  "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"
  ],
  "name": "ConnStringValueTypePair"
}