{
  "title": "QuoteBlock",
  "@id": "stencila:QuoteBlock",
  "extends": "Entity",
  "role": "secondary",
  "status": "stable",
  "category": "prose",
  "description": "A section quoted from somewhere else.\n",
  "properties": {
    "type": {
      "@id": "schema:type",
      "description": "The name of the type.",
      "type": "string",
      "enum": [
        "QuoteBlock"
      ],
      "default": "QuoteBlock",
      "from": "Entity"
    },
    "id": {
      "@id": "schema:id",
      "description": "The identifier for this item.",
      "type": "string",
      "from": "Entity"
    },
    "meta": {
      "@id": "stencila:meta",
      "description": "Metadata associated with this item.",
      "type": "object",
      "from": "Entity"
    },
    "cite": {
      "@id": "stencila:cite",
      "description": "The source of the quote.",
      "anyOf": [
        {
          "$ref": "Cite.schema.json"
        },
        {
          "type": "string",
          "format": "uri"
        }
      ],
      "from": "QuoteBlock"
    },
    "content": {
      "@id": "stencila:content",
      "description": "The content of the quote.",
      "type": "array",
      "items": {
        "$ref": "BlockContent.schema.json"
      },
      "from": "QuoteBlock"
    }
  },
  "required": [
    "type",
    "content"
  ],
  "file": "QuoteBlock.schema.yaml",
  "children": [],
  "descendants": [],
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://schema.stenci.la/v0/QuoteBlock.schema.json",
  "source": "https://github.com/stencila/schema/blob/master/QuoteBlock.schema.yaml",
  "type": "object",
  "additionalProperties": false,
  "propertyAliases": {}
}
