Application

CloudCXEnterpriseEPMERPHCMProject ManagementREST APISaaSSCM

Properties

Name Type Description
name string Application name
type string Application type
description string Application description
planTypes array Available plan types
createdBy string Created by user
createdDate string Creation timestamp
View JSON Schema on GitHub

JSON Schema

oracle-fusion-application-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Application",
  "title": "Application",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Application name"
    },
    "type": {
      "type": "string",
      "description": "Application type"
    },
    "description": {
      "type": "string",
      "description": "Application description"
    },
    "planTypes": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Available plan types"
    },
    "createdBy": {
      "type": "string",
      "description": "Created by user"
    },
    "createdDate": {
      "type": "string",
      "format": "date-time",
      "description": "Creation timestamp"
    }
  }
}