---
id: quote.json
"$schema": "http://json-schema.org/draft-04/schema"
title: Quote
description: "A textual quote or citation"
type:
- object
properties:
  type:
    description: Block type
    example: "quote"
    type: string
    enum:
      - quote
  html:
    description: HTML content of the block
    example: "<blockquote><p>block quote</p></blockquote>"
    type: string
    minLength: 7
  text:
    description: Extracted text
    example: "Foo bar"
    type: string
  length:
    description: Length of extracted text
    example: 7
    type: integer
required: [type, html]
