Share feedback
Answers are generated based on the documentation.

Experimental

Schema

Platform

Type: object

Platform is the OCI platform tuple.
architecture

Type: string

architecture is the CPU architecture, for example "amd64" or "arm64".
All schema constraints and annotations
{
  "description": "architecture is the CPU architecture, for example \"amd64\" or \"arm64\".",
  "type": "string"
}
os

Type: string

os is the operating system, for example "linux".
All schema constraints and annotations
{
  "description": "os is the operating system, for example \"linux\".",
  "type": "string"
}
All schema constraints and annotations
{
  "additionalProperties": false,
  "description": "Platform is the OCI platform tuple.",
  "properties": {
    "architecture": {
      "description": "architecture is the CPU architecture, for example \"amd64\" or \"arm64\".",
      "type": "string"
    },
    "os": {
      "description": "os is the operating system, for example \"linux\".",
      "type": "string"
    }
  },
  "title": "Platform",
  "type": "object"
}