Salesforce · Schema

OrderedByInfo

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
fieldApiName string
isAscending boolean
label string
View JSON Schema on GitHub

JSON Schema

salesforce-ordered-by-info-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "fieldApiName": {
      "type": "string",
      "example": "example_value"
    },
    "isAscending": {
      "type": "boolean",
      "example": true
    },
    "label": {
      "type": "string",
      "example": "Example Title"
    }
  },
  "required": [
    "fieldApiName",
    "isAscending",
    "label"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "OrderedByInfo"
}