Salesforce · Schema

EligibleEnrollmentPeriod

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
isEnrollmentRequired boolean
enrollmentStartDate string
enrollmentEndDate string
View JSON Schema on GitHub

JSON Schema

salesforce-eligible-enrollment-period-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "isEnrollmentRequired": {
      "type": "boolean",
      "example": true
    },
    "enrollmentStartDate": {
      "type": "string",
      "example": "example_value"
    },
    "enrollmentEndDate": {
      "type": "string",
      "example": "example_value"
    }
  },
  "required": [
    "isEnrollmentRequired",
    "enrollmentStartDate",
    "enrollmentEndDate"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "EligibleEnrollmentPeriod"
}