Salesforce · Schema

UpateAccountSuccess

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
data object
errors array
View JSON Schema on GitHub

JSON Schema

salesforce-upate-account-success-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "data": {
      "type": "object",
      "properties": {
        "uiapi": {
          "type": "object",
          "properties": {
            "AccountUpdate": {
              "type": "object",
              "properties": {
                "success": {
                  "type": "boolean",
                  "example": true
                }
              },
              "required": [
                "success"
              ]
            }
          },
          "required": [
            "AccountUpdate"
          ]
        }
      },
      "required": [
        "uiapi"
      ]
    },
    "errors": {
      "type": "array",
      "description": "",
      "example": [],
      "items": {
        "type": "string"
      }
    }
  },
  "required": [
    "data",
    "errors"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "UpateAccountSuccess"
}