Salesforce · Schema

RenewedContract

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
attributes object
Id string
View JSON Schema on GitHub

JSON Schema

salesforce-renewed-contract-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "attributes": {
      "type": "object",
      "properties": {
        "type": {
          "type": "string",
          "example": "example_value"
        }
      },
      "required": [
        "type"
      ]
    },
    "Id": {
      "type": "string",
      "example": "abc123"
    }
  },
  "required": [
    "attributes",
    "Id"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "RenewedContract"
}