Skip to content
Developer Preview

MessageAttachment

userMessage image attachment metadata: metadata only — the durable bytes live in the log and are reachable on the raw altitude.

  • height
  • mediaType
  • type
  • width
Source

schema/msp/experimental/msp.schema.json#/types/MessageAttachment

{
"description": "`userMessage` image attachment metadata: metadata only —\nthe durable bytes live in the log and are reachable on the raw altitude.",
"properties": {
"height": {
"description": "Pixel height, when known.",
"type": "integer"
},
"mediaType": {
"description": "The image media type (e.g. `\"image/png\"`).",
"type": "string"
},
"type": {
"description": "Attachment type, `\"image\"` in v1 (free string: attachment vocabulary\ngrows additively with the runtime's intake surface).",
"type": "string"
},
"width": {
"description": "Pixel width, when known.",
"type": "integer"
}
},
"required": [
"mediaType",
"type"
],
"type": "object"
}