Salesforce · Schema

NamedCredential

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
calloutUrl string
developerName string
id string
masterLabel string
type string
url string
View JSON Schema on GitHub

JSON Schema

salesforce-named-credential-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "calloutUrl": {
      "type": "string",
      "example": "https://www.example.com"
    },
    "developerName": {
      "type": "string",
      "example": "example_value"
    },
    "id": {
      "type": "string",
      "example": "abc123"
    },
    "masterLabel": {
      "type": "string",
      "example": "example_value"
    },
    "type": {
      "type": "string",
      "example": "example_value"
    },
    "url": {
      "type": "string",
      "example": "https://www.example.com"
    }
  },
  "required": [
    "calloutUrl",
    "developerName",
    "id",
    "masterLabel",
    "type",
    "url"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "NamedCredential"
}