Salesforce · JSON Structure

Salesforce Model1 Structure

Type: object Properties: 18 Required: 18
Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Model1 is a JSON Structure definition published by Salesforce, describing 18 properties, of which 18 are required. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

createdBy createdDate fieldMappingList filters historyUrl id isRefreshEnabled label lastModifiedBy lastModifiedDate model modelType name predictionDefinitionUrl prescribableFields sortOrder status url

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

JSON Structure

Raw ↑
{
  "type": "object",
  "name": "Model1",
  "properties": {
    "createdBy": {
      "type": "object",
      "properties": {
        "id": {
          "type": "string"
        },
        "name": {
          "type": "string"
        },
        "profilePhotoUrl": {
          "type": "string"
        }
      },
      "required": [
        "id",
        "name",
        "profilePhotoUrl"
      ]
    },
    "createdDate": {
      "type": "string"
    },
    "fieldMappingList": {
      "type": "array",
      "description": "",
      "items": {
        "type": "object",
        "properties": {
          "modelField": {
            "type": "object",
            "properties": {
              "label": {
                "type": "string"
              },
              "name": {
                "type": "string"
              },
              "type": {
                "type": "string"
              }
            },
            "required": [
              "label",
              "name",
              "type"
            ]
          }
        },
        "required": [
          "modelField"
        ]
      }
    },
    "filters": {
      "type": "array",
      "description": "",
      "items": {
        "type": "string"
      }
    },
    "historyUrl": {
      "type": "string"
    },
    "id": {
      "type": "string"
    },
    "isRefreshEnabled": {
      "type": "boolean"
    },
    "label": {
      "type": "string"
    },
    "lastModifiedBy": {
      "type": "object",
      "properties": {
        "id": {
          "type": "string"
        },
        "name": {
          "type": "string"
        },
        "profilePhotoUrl": {
          "type": "string"
        }
      },
      "required": [
        "id",
        "name",
        "profilePhotoUrl"
      ]
    },
    "lastModifiedDate": {
      "type": "string"
    },
    "model": {
      "type": "object",
      "properties": {
        "id": {
          "type": "string"
        }
      },
      "required": [
        "id"
      ]
    },
    "modelType": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "predictionDefinitionUrl": {
      "type": "string"
    },
    "prescribableFields": {
      "type": "array",
      "description": "",
      "items": {
        "type": "object",
        "properties": {
          "customDefinitions": {
            "type": "array",
            "description": "",
            "items": {
              "type": "string"
            }
          },
          "field": {
            "type": "object",
            "properties": {
              "label": {
                "type": "string"
              },
              "name": {
                "type": "string"
              },
              "type": {
                "type": "string"
              }
            },
            "required": [
              "label",
              "name",
              "type"
            ]
          }
        },
        "required": [
          "customDefinitions",
          "field"
        ]
      }
    },
    "sortOrder": {
      "type": "integer"
    },
    "status": {
      "type": "string"
    },
    "url": {
      "type": "string"
    }
  },
  "required": [
    "createdBy",
    "createdDate",
    "fieldMappingList",
    "filters",
    "historyUrl",
    "id",
    "isRefreshEnabled",
    "label",
    "lastModifiedBy",
    "lastModifiedDate",
    "model",
    "modelType",
    "name",
    "predictionDefinitionUrl",
    "prescribableFields",
    "sortOrder",
    "status",
    "url"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}