Snapshot

CloudCXEnterpriseEPMERPHCMProject ManagementREST APISaaSSCM

Properties

Name Type Description
name string Snapshot name
type string Snapshot type
size integer Snapshot size in bytes
lastModifiedTime string Last modified timestamp
View JSON Schema on GitHub

JSON Schema

oracle-fusion-snapshot-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Snapshot",
  "title": "Snapshot",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Snapshot name"
    },
    "type": {
      "type": "string",
      "description": "Snapshot type",
      "enum": [
        "LCM",
        "External"
      ]
    },
    "size": {
      "type": "integer",
      "description": "Snapshot size in bytes"
    },
    "lastModifiedTime": {
      "type": "string",
      "format": "date-time",
      "description": "Last modified timestamp"
    }
  }
}