Salesforce · Schema

Key

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
kty string
n string
e string
alg string
use string
kid string
View JSON Schema on GitHub

JSON Schema

salesforce-key-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "kty": {
      "type": "string",
      "example": "example_value"
    },
    "n": {
      "type": "string",
      "example": "example_value"
    },
    "e": {
      "type": "string",
      "example": "example_value"
    },
    "alg": {
      "type": "string",
      "example": "example_value"
    },
    "use": {
      "type": "string",
      "example": "example_value"
    },
    "kid": {
      "type": "string",
      "example": "500123"
    }
  },
  "required": [
    "kty",
    "n",
    "e",
    "alg",
    "use",
    "kid"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Key"
}