ApiVersion

Information about an available API version

CMSCommunitiesCRMCustomer PortalDigital ExperienceExperience CloudPartner Portal

Properties

Name Type Description
label string Human-readable version label
url string URL to the version's root resource
version string Version number (e.g., 59.0)
View JSON Schema on GitHub

JSON Schema

salesforce-experience-cloud-apiversion-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ApiVersion",
  "title": "ApiVersion",
  "type": "object",
  "description": "Information about an available API version",
  "properties": {
    "label": {
      "type": "string",
      "description": "Human-readable version label"
    },
    "url": {
      "type": "string",
      "format": "uri",
      "description": "URL to the version's root resource"
    },
    "version": {
      "type": "string",
      "description": "Version number (e.g., 59.0)"
    }
  }
}