{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$defs": {},
  "operationId": "clipboard.parse",
  "schemas": {
    "input": {
      "type": "object",
      "properties": {
        "source": {
          "type": "string"
        },
        "items": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "type": {
                "type": "string"
              },
              "kind": {
                "enum": [
                  "string",
                  "bytes"
                ]
              },
              "data": {},
              "name": {
                "type": "string"
              }
            },
            "additionalProperties": false,
            "required": [
              "type",
              "kind",
              "data"
            ]
          }
        }
      },
      "additionalProperties": false,
      "required": [
        "items"
      ]
    },
    "output": {
      "type": "object",
      "properties": {
        "success": {
          "type": "boolean"
        },
        "plan": {
          "type": "object"
        },
        "diagnostics": {
          "type": "array"
        },
        "failure": {
          "type": "object"
        }
      },
      "additionalProperties": false
    }
  }
}
