{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "name": "advanced-posts-blocks/posts",
  "apiVersion": 3,
  "title": "Multiple Posts",
  "description": "Display multiple posts.",
  "icon": "admin-page",
  "textdomain": "advanced-posts-blocks",
  "attributes": {
    "align": {
      "type": "string",
      "enum": [
        "center",
        "wide",
        "full"
      ]
    },
    "postType": {
      "type": "string",
      "default": "post"
    },
    "postsToShow": {
      "type": "number",
      "default": 5
    },
    "offset": {
      "type": "number",
      "default": 0
    },
    "order": {
      "type": "string",
      "default": "desc"
    },
    "orderBy": {
      "type": "string",
      "default": "date"
    },
    "ignoreStickyPosts": {
      "type": "boolean",
      "default": true
    },
    "showAllPosts": {
      "type": "boolean",
      "default": false
    }
  },
  "supports": {
    "align": [
      "center",
      "wide",
      "full"
    ],
    "html": false
  },
  "category": "widgets",
  "editorScript": "file:./index.js"
}