Standard Objects Structures

Image

[{
    "Image": {
        "Src": "https://yoursite.com/images/picture.jpg",
        "Width": 1500,
        "Height": 844,
        "Alt": "Alt text",
        "Caption": "Caption text",
        "Description": "Image description text"
    }
}]

Description

This object structure is used in widgets to declare images.

Properties

Src [required]

Image file URL.

Width [required]

Image width in px.

Must match the true width of the image linked in Src param.

Height [required]

Image height in px.

Must match the true height of the image linked in Src param.

Alt [optional]

Short text describing the image. Used in search engines.

Caption [optional]

Short caption text.

Can be placed over or below the image.

Description [optional]

Long image description.

Can be placed over or below the image.

Author

[{
    "Author": [{
        "Name": "John Doe",
        "Url": "https://yoursite.com/author/page/", 
        "Description": "Author description text",
        "Image": {
            "Src": "https://yoursite.com/images/author/avatar.jpg",
            "Width": 100,
            "Height": 100,
            "Alt": "Alt text",
        }
    },{
        "Name": "John Doe 2",
        "Url": "https://yoursite.com/author/page/", 
        "Description": "Author description text",
        "Image": {
            "Src": "https://yoursite.com/images/author/avatar.jpg",
            "Width": 100,
            "Height": 100,
            "Alt": "Alt text",
        }
    }]
}]

Name [required]

Author name, text string.

Url [optional]

Link to the author page (e.g. a list of all articles by this author).

Description [optional]

Short text about author.

Image [optional]

Standard Image object structure to provide author avatar.