{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$defs": {
    "PutManyItem": {
      "properties": {
        "name": {
          "type": "string"
        },
        "size": {
          "type": "integer"
        },
        "error": {
          "type": "string"
        }
      },
      "type": "object",
      "description": "PutManyItem is one entry of a put many response: a name and size, or an error for the item that refused alone."
    }
  },
  "properties": {
    "results": {
      "items": {
        "$ref": "#/$defs/PutManyItem"
      },
      "type": "array"
    }
  },
  "type": "object",
  "required": [
    "results"
  ],
  "title": "PutManyResponse",
  "description": "PutManyResponse answers put many, one entry per record in request order."
}
