8e5b17cf13
Signed-off-by: Mrunal Patel <mrunalp@gmail.com>
18 lines
414 B
JSON
18 lines
414 B
JSON
{
|
|
"description": "OpenContainer Image Layout Schema",
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
"id": "https://opencontainers.org/schema/image-layout",
|
|
"type": "object",
|
|
"properties": {
|
|
"imageLayoutVersion": {
|
|
"description": "version of the OCI image-layout",
|
|
"type": "string",
|
|
"enum": [
|
|
"1.0.0"
|
|
]
|
|
}
|
|
},
|
|
"required": [
|
|
"imageLayoutVersion"
|
|
]
|
|
}
|