{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/scaleway.instance.v1.Image", "title": "scaleway.instance.v1.Image", "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string" }, "arch": { "$ref": "#/components/schemas/scaleway.instance.v1.Arch" }, "creation_date": { "type": "string", "description": "(RFC 3339 format)", "format": "date-time", "example": "2022-03-22T12:34:56.123456Z", "nullable": true }, "modification_date": { "type": "string", "description": "(RFC 3339 format)", "format": "date-time", "example": "2022-03-22T12:34:56.123456Z", "nullable": true }, "default_bootscript": { "deprecated": true, "$ref": "#/components/schemas/scaleway.instance.v1.Bootscript" }, "extra_volumes": { "type": "object", "properties": { "": { "$ref": "#/components/schemas/scaleway.instance.v1.Volume" } }, "additionalProperties": true }, "from_server": { "type": "string" }, "organization": { "type": "string" }, "public": { "type": "boolean" }, "root_volume": { "$ref": "#/components/schemas/scaleway.instance.v1.VolumeSummary" }, "state": { "$ref": "#/components/schemas/scaleway.instance.v1.Image.State" }, "project": { "type": "string" }, "tags": { "type": "array", "items": { "type": "string" } }, "zone": { "type": "string", "description": "The zone you want to target" } }, "x-properties-order": [ "id", "name", "arch", "creation_date", "modification_date", "default_bootscript", "extra_volumes", "from_server", "organization", "public", "root_volume", "state", "project", "tags", "zone" ] }