AnnouncementCreate

CloudCXEnterpriseEPMERPHCMProject ManagementREST APISaaSSCM

Properties

Name Type Description
Subject string
Description string
StartDate string
EndDate string
Severity string
View JSON Schema on GitHub

JSON Schema

oracle-fusion-announcementcreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AnnouncementCreate",
  "title": "AnnouncementCreate",
  "type": "object",
  "required": [
    "Subject",
    "StartDate"
  ],
  "properties": {
    "Subject": {
      "type": "string"
    },
    "Description": {
      "type": "string"
    },
    "StartDate": {
      "type": "string",
      "format": "date"
    },
    "EndDate": {
      "type": "string",
      "format": "date"
    },
    "Severity": {
      "type": "string",
      "enum": [
        "Information",
        "Warning",
        "Critical"
      ]
    }
  }
}