Salesforce · Schema

UpDownVote

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
downVoteCount integer
myVote string
upVoteCount integer
View JSON Schema on GitHub

JSON Schema

salesforce-up-down-vote-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "downVoteCount": {
      "type": "integer",
      "example": 42
    },
    "myVote": {
      "type": "string",
      "example": "example_value"
    },
    "upVoteCount": {
      "type": "integer",
      "example": 42
    }
  },
  "required": [
    "downVoteCount",
    "myVote",
    "upVoteCount"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "UpDownVote"
}