Object containing a blob to external data
Properties
Blob to external data (up to 100MB)
maxSize: 104.9 MB
View raw schema
{
"type": "object",
"required": [
"blob"
],
"properties": {
"blob": {
"type": "blob",
"accept": [
"*/*"
],
"maxSize": 104857600,
"description": "Blob to external data (up to 100MB)"
}
},
"description": "Object containing a blob to external data"
}
Object containing a large image
Properties
Image (up to 10MB)
maxSize: 10.5 MB
View raw schema
{
"type": "object",
"required": [
"image"
],
"properties": {
"image": {
"type": "blob",
"accept": [
"image/jpeg",
"image/jpg",
"image/png",
"image/webp"
],
"maxSize": 10485760,
"description": "Image (up to 10MB)"
}
},
"description": "Object containing a large image"
}
Object containing a blob to external data
Properties
Blob to external data (up to 10MB)
maxSize: 10.5 MB
View raw schema
{
"type": "object",
"required": [
"blob"
],
"properties": {
"blob": {
"type": "blob",
"accept": [
"*/*"
],
"maxSize": 10485760,
"description": "Blob to external data (up to 10MB)"
}
},
"description": "Object containing a blob to external data"
}
Object containing a small image
Properties
Image (up to 5MB)
maxSize: 5.2 MB
View raw schema
{
"type": "object",
"required": [
"image"
],
"properties": {
"image": {
"type": "blob",
"accept": [
"image/jpeg",
"image/jpg",
"image/png",
"image/webp"
],
"maxSize": 5242880,
"description": "Image (up to 5MB)"
}
},
"description": "Object containing a small image"
}
Object containing a URI to external data
Properties
URI to external data
maxGraphemes: 1024 graphemes
View raw schema
{
"type": "object",
"required": [
"uri"
],
"properties": {
"uri": {
"type": "string",
"format": "uri",
"description": "URI to external data",
"maxGraphemes": 1024
}
},
"description": "Object containing a URI to external data"
}