{
  "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 (in the oci-layout file)",
      "type": "string",
      "enum": [
        "1.0.0"
      ]
    }
  },
  "required": [
    "imageLayoutVersion"
  ]
}
