Ampersand · JSON Structure

Ampersand Api Provider Metadata Info Structure

ProviderMetadataInfo schema from Ampersand API

Type: object Properties: 3 Required: 2
Developer ToolsIntegrationsPlatformSaaSOAuthData SyncWebhooks

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

Properties

value source displayName

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/ampersand/refs/heads/main/json-structure/ampersand-api-provider-metadata-info-structure.json",
  "name": "ProviderMetadataInfo",
  "description": "ProviderMetadataInfo schema from Ampersand API",
  "type": "object",
  "properties": {
    "value": {
      "type": "string",
      "description": "The value of the metadata field",
      "example": "1234567890"
    },
    "source": {
      "type": "string",
      "description": "The source of the metadata field",
      "enum": [
        "input",
        "token",
        "provider"
      ],
      "example": "input"
    },
    "displayName": {
      "type": "string",
      "description": "The human-readable name for the field",
      "example": "Account ID"
    }
  },
  "required": [
    "value",
    "source"
  ]
}