github.com/opencontainers/runtime-tools@v0.9.0/schema/socket-response.json (about)

     1  {
     2    "description": "Open Container Runtime Socket Response Schema",
     3    "$schema": "http://json-schema.org/draft-04/schema#",
     4    "id": "https://opencontainers.org/schema/runtime/socket/response",
     5    "type": "object",
     6    "properties": {
     7      "type": {
     8        "id": "https://opencontainers.org/schema/runtime/socket/response/type",
     9        "type": "string",
    10        "enum": [
    11          "success",
    12          "error"
    13        ]
    14      },
    15      "message": {
    16        "id": "https://opencontainers.org/schema/runtime/socket/response/message",
    17        "description": "A phrase describing the response.",
    18        "type": "string"
    19      }
    20    },
    21    "required": [
    22      "type"
    23    ]
    24  }