PictureAnnotationType Data Type

This annotation holds a picture.

Properties
name data type constraints description
overlay boolean required boolean Returns the overlay flag.
imageData string  
Properties inherited from AnnotationType
accessData AnnotationAccessDataType   Returns the access data.
height number required short Returns the height.
page number required short Returns the page.
width number required short Returns the width.
x number required short Returns the x.
y number required short Returns the y.

Example

{
  "overlay" : true,
  "imageData" : "...",
  "accessData" : {
    "aclName" : "...",
    "creationDate" : 12345,
    "creationUser" : 12345,
    "lastModificationDate" : 12345,
    "lastModificationUser" : 12345
  },
  "height" : 12345,
  "page" : 12345,
  "width" : 12345,
  "x" : 12345,
  "y" : 12345
}