{
  "type": "object",
  "properties": {
    "accepted": {
      "type": "integer",
      "minimum": 0,
      "description": "Rows appended from this file."
    },
    "refused": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "row": {
            "type": "integer",
            "minimum": 0,
            "description": "One-based input row when applicable."
          },
          "reason": {
            "type": "string",
            "description": "Parse, missing-field or ownership refusal."
          }
        },
        "required": [
          "reason"
        ],
        "additionalProperties": false,
        "description": "One refused row or file."
      },
      "description": "Every refusal is retained."
    },
    "connectors": {
      "type": "array",
      "items": {
        "type": "string",
        "description": "One recorded value."
      },
      "description": "Saved connector identities after successful parsing."
    },
    "error": {
      "type": "string",
      "description": "Missing-file or parse diagnostic; the local MCP result sets isError."
    }
  },
  "required": [
    "accepted",
    "refused"
  ],
  "additionalProperties": false,
  "description": "Import outcome; parse failure includes error and omits connectors."
}
