You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "The OCI Image Index provides a schema for a manifest list,\nwhich allows a single image reference to refer to a set of manifests\nfor different platforms.\n",
83
+
"properties": {
84
+
"annotations": {
85
+
"additionalProperties": {
86
+
"type": "string"
87
+
},
88
+
"description": "Arbitrary metadata for the image index.",
89
+
"type": "object"
90
+
},
91
+
"manifests": {
92
+
"items": {
93
+
"allOf": [
94
+
{
95
+
"$ref": "#/components/schemas/Descriptor"
96
+
},
97
+
{
98
+
"properties": {
99
+
"platform": {
100
+
"description": "The platform object describes the platform which the image in the manifest runs on.\n",
101
+
"properties": {
102
+
"architecture": {
103
+
"description": "The CPU architecture.",
104
+
"example": "amd64",
105
+
"type": "string"
106
+
},
107
+
"features": {
108
+
"description": "The CPU features.",
109
+
"items": {
110
+
"type": "string"
111
+
},
112
+
"type": "array"
113
+
},
114
+
"os": {
115
+
"description": "The operating system.",
116
+
"example": "linux",
117
+
"type": "string"
118
+
},
119
+
"os.features": {
120
+
"description": "The operating system features.",
121
+
"items": {
122
+
"type": "string"
123
+
},
124
+
"type": "array"
125
+
},
126
+
"os.version": {
127
+
"description": "The operating system version.",
128
+
"type": "string"
129
+
},
130
+
"variant": {
131
+
"description": "The CPU architecture variant.",
132
+
"type": "string"
133
+
}
134
+
},
135
+
"required": [
136
+
"architecture",
137
+
"os"
138
+
],
139
+
"type": "object"
140
+
}
141
+
},
142
+
"type": "object"
143
+
}
144
+
]
145
+
},
146
+
"type": "array"
147
+
},
148
+
"mediaType": {
149
+
"description": "The media type of the image index.",
"description": "Checks for the existence of an image manifest or image index.\nReturns the manifest's digest and content type in the headers if it exists.\n",
245
+
"operationId": "headManifest",
246
+
"responses": {
247
+
"200": {
248
+
"description": "Manifest exists.",
249
+
"headers": {
250
+
"Content-Length": {
251
+
"description": "The length of the manifest in bytes.",
0 commit comments