{
  "$schema": "https://json.schemastore.org/block.json",
  "apiVersion": 3,
  "name": "airpicker/asset-picker",
  "title": "Air",
  "description": "Embed an image or video asset from Air",
  "category": "media",
  "textdomain": "air-asset-picker",
  "supports": {
    "html": false
  },
  "attributes": {
    "asset": {
      "type": "object",
      "default": null
    },
    "altText": {
      "type": "string",
      "default": ""
    },
    "resolution": {
      "type": "string",
      "default": "full"
    },
    "displayWidth": {
      "type": "number"
    },
    "displayHeight": {
      "type": "number"
    },
    "versionReference": {
      "type": "string",
      "default": "static"
    }
  },
  "example": {
    "attributes": {
      "asset": {
        "assetId": "example-123",
        "type": "image",
        "alt": "Example Air image",
        "caption": "An example caption",
        "urls": {
          "thumbnail": "https://placecats.com/300/300",
          "static": "https://placecats.com/800/600",
          "dynamic": null,
          "selected": "https://placecats.com/800/600"
        },
        "width": 800,
        "height": 600
      }
    }
  },
  "editorScript": "file:./index.js",
  "viewScript": "file:./view.js"
}