Salesforce · JSON Structure

Salesforce Ui Object Info Representation Structure

Metadata about a Salesforce object

Type: object Properties: 11
Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

ObjectInfoRepresentation is a JSON Structure definition published by Salesforce, describing 11 properties. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

apiName label labelPlural keyPrefix createable updateable deleteable queryable fields recordTypeInfos themeInfo

Meta-schema: https://json-structure.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "type": "object",
  "description": "Metadata about a Salesforce object",
  "name": "ObjectInfoRepresentation",
  "properties": {
    "apiName": {
      "type": "string"
    },
    "label": {
      "type": "string"
    },
    "labelPlural": {
      "type": "string"
    },
    "keyPrefix": {
      "type": "string"
    },
    "createable": {
      "type": "boolean"
    },
    "updateable": {
      "type": "boolean"
    },
    "deleteable": {
      "type": "boolean"
    },
    "queryable": {
      "type": "boolean"
    },
    "fields": {
      "type": "object",
      "description": "Field metadata indexed by field API name"
    },
    "recordTypeInfos": {
      "type": "object"
    },
    "themeInfo": {
      "type": "object",
      "properties": {
        "color": {
          "type": "string"
        },
        "iconUrl": {
          "type": "string"
        }
      }
    }
  },
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}