Oracle Cloud Infrastructure · Schema
Image
A boot disk image for launching compute instances.
Cloud ComputingEnterprise CloudInfrastructure as a ServiceOraclePlatform as a Service
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The OCID of the image. |
| compartmentId | string | The OCID of the compartment. |
| displayName | string | A user-friendly name. |
| operatingSystem | string | The image operating system. |
| operatingSystemVersion | string | The image operating system version. |
| lifecycleState | string | |
| sizeInMBs | integer | Size of the image in megabytes. |
| timeCreated | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Image",
"title": "Image",
"type": "object",
"description": "A boot disk image for launching compute instances.",
"properties": {
"id": {
"type": "string",
"description": "The OCID of the image.",
"example": "ocid1.image.oc1.iad.abcdefg123456"
},
"compartmentId": {
"type": "string",
"description": "The OCID of the compartment.",
"example": "ocid1.resource.oc1.iad.abcdefg123456"
},
"displayName": {
"type": "string",
"description": "A user-friendly name.",
"example": "Oracle-Linux-8.8-2026.01.01-0"
},
"operatingSystem": {
"type": "string",
"description": "The image operating system.",
"example": "Oracle Linux"
},
"operatingSystemVersion": {
"type": "string",
"description": "The image operating system version.",
"example": "8.8"
},
"lifecycleState": {
"type": "string",
"enum": [
"PROVISIONING",
"IMPORTING",
"AVAILABLE",
"EXPORTING",
"DISABLED",
"DELETED"
],
"example": "PROVISIONING"
},
"sizeInMBs": {
"type": "integer",
"description": "Size of the image in megabytes.",
"example": 47694
},
"timeCreated": {
"type": "string",
"format": "date-time",
"example": "2026-04-18T10:30:00Z"
}
}
}