AwardCreate

CloudCXEnterpriseEPMERPHCMProject ManagementREST APISaaSSCM

Properties

Name Type Description
AwardName string
AwardType string
SponsorName string
StartDate string
EndDate string
TotalFunding number
CurrencyCode string
PrincipalInvestigator string
View JSON Schema on GitHub

JSON Schema

oracle-fusion-awardcreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AwardCreate",
  "title": "AwardCreate",
  "type": "object",
  "required": [
    "AwardName",
    "SponsorName",
    "StartDate"
  ],
  "properties": {
    "AwardName": {
      "type": "string"
    },
    "AwardType": {
      "type": "string"
    },
    "SponsorName": {
      "type": "string"
    },
    "StartDate": {
      "type": "string",
      "format": "date"
    },
    "EndDate": {
      "type": "string",
      "format": "date"
    },
    "TotalFunding": {
      "type": "number",
      "format": "double"
    },
    "CurrencyCode": {
      "type": "string"
    },
    "PrincipalInvestigator": {
      "type": "string"
    }
  }
}