{ "$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" ] }