Salesforce · Schema

ApiVersion

Metadata about a single available Salesforce REST API version on this instance.

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
version string The API version number (e.g., "63.0").
label string Descriptive label for this API version (e.g., "Winter '25").
url string The REST endpoint URL for this specific API version on the current instance.
View JSON Schema on GitHub

JSON Schema

salesforce-rest-api-version-schema.json Raw ↑
{
  "type": "object",
  "description": "Metadata about a single available Salesforce REST API version on this instance.\n",
  "properties": {
    "version": {
      "type": "string",
      "description": "The API version number (e.g., \"63.0\").",
      "example": "example_value"
    },
    "label": {
      "type": "string",
      "description": "Descriptive label for this API version (e.g., \"Winter '25\").",
      "example": "Example Title"
    },
    "url": {
      "type": "string",
      "description": "The REST endpoint URL for this specific API version on the current instance.\n",
      "format": "uri",
      "example": "https://www.example.com"
    }
  },
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ApiVersion"
}