blob keyed by ref in the body
Properties
No description available.
maxSize: 5.0 MB
key used to reference the blob
maxLength: 512 bytesmaxGraphemes: 128 graphemes
View raw schema
{
"type": "object",
"required": [
"imageRef",
"blob"
],
"properties": {
"blob": {
"type": "blob",
"accept": [
"image/*"
],
"maxSize": 5000000
},
"imageRef": {
"type": "string",
"maxLength": 512,
"description": "key used to reference the blob",
"maxGraphemes": 128
}
},
"description": "blob keyed by ref in the body"
}
markdown for rendering in darkworld.download/blog
Properties
markdown source  to embed images
maxLength: 1000000 bytes
Images referenced in the body with 
maxLength: 128 items
View raw schema
{
"type": "object",
"required": [
"body"
],
"properties": {
"body": {
"type": "string",
"maxLength": 1000000,
"description": "markdown source  to embed images"
},
"images": {
"type": "array",
"items": {
"ref": "#imageRef",
"type": "ref"
},
"maxLength": 128,
"description": "Images referenced in the body with "
}
},
"description": "markdown for rendering in darkworld.download/blog"
}