Salesforce · Schema

SuccessfulFilesSharesLink

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
expirationDate ['string', 'null']
fileViewUrl string
isPasswordRequired boolean
password ['string', 'null']
sharingType string
View JSON Schema on GitHub

JSON Schema

salesforce-successful-files-shares-link-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "expirationDate": {
      "type": "['string', 'null']",
      "example": "example_value"
    },
    "fileViewUrl": {
      "type": "string",
      "example": "https://www.example.com"
    },
    "isPasswordRequired": {
      "type": "boolean",
      "example": true
    },
    "password": {
      "type": "['string', 'null']",
      "example": "example_value"
    },
    "sharingType": {
      "type": "string",
      "example": "example_value"
    }
  },
  "required": [
    "expirationDate",
    "fileViewUrl",
    "isPasswordRequired",
    "password",
    "sharingType"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "SuccessfulFilesSharesLink"
}