Plane docs
ApiSchemas

BlobTooLargeEncoded

One shape from the contract, as it appears on the wire.

Used by blobs.upload

JSON Schema

{
  "type": "object",
  "properties": {
    "_tag": {
      "type": "string",
      "enum": [
        "BlobTooLarge"
      ]
    },
    "bytes": {
      "anyOf": [
        {
          "type": "number"
        },
        {
          "type": "string",
          "enum": [
            "Infinity",
            "-Infinity",
            "NaN"
          ]
        }
      ]
    },
    "maximum": {
      "anyOf": [
        {
          "type": "number"
        },
        {
          "type": "string",
          "enum": [
            "Infinity",
            "-Infinity",
            "NaN"
          ]
        }
      ]
    }
  },
  "required": [
    "_tag",
    "bytes",
    "maximum"
  ],
  "additionalProperties": false
}

On this page