Alteryx · Schema

Credential

A stored credential for workflow execution

AnalyticsAutomationData EngineeringData PreparationData ScienceETLMachine-LearningPredictive Analytics

Properties

Name Type Description
id string Unique credential identifier
username string Windows login username
View JSON Schema on GitHub

JSON Schema

alteryx-credential-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Credential",
  "title": "Credential",
  "type": "object",
  "description": "A stored credential for workflow execution",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique credential identifier",
      "example": "abc123"
    },
    "username": {
      "type": "string",
      "description": "Windows login username",
      "example": "example_value"
    }
  }
}