{
    "$schema": "https://schemas.wp.org/trunk/block.json",
    "apiVersion": 3,
    "name": "eiam/post-image-sources",
    "version": "1.1.0",
    "title": "Image Credit Companion",
    "category": "widgets",
    "icon": "format-image",
    "description": "Display image sources and attribution information for the current post or site-wide.",
    "keywords": ["image", "sources", "attribution", "credits"],
    "textdomain": "image-credit-companion",
    "supports": {
        "html": false,
        "align": ["wide", "full"],
        "spacing": {
            "margin": true,
            "padding": true
        }
    },
    "attributes": {
        "scope": {
            "type": "string",
            "default": "post",
            "enum": ["post", "site"]
        },
        "post_id": {
            "type": "number",
            "default": 0
        },
        "list": {
            "type": "string",
            "default": "table",
            "enum": ["table", "ul", "ol", "inline"]
        },
        "show_missing": {
            "type": "boolean",
            "default": false
        },
        "per_page": {
            "type": "number",
            "default": 20
        }
    },
    "example": {
        "attributes": {
            "scope": "post",
            "list": "table",
            "show_missing": false
        }
    }
}
