1{ 2 "description": "OpenContainer Image Layout Schema", 3 "$schema": "http://json-schema.org/draft-04/schema#", 4 "id": "https://opencontainers.org/schema/image/layout", 5 "type": "object", 6 "properties": { 7 "imageLayoutVersion": { 8 "description": "version of the OCI Image Layout (in the oci-layout file)", 9 "type": "string", 10 "enum": [ 11 "1.0.0" 12 ] 13 } 14 }, 15 "required": [ 16 "imageLayoutVersion" 17 ] 18}