{
  "title": "TableRow",
  "@id": "stencila:TableRow",
  "extends": "Entity",
  "role": "secondary",
  "status": "unstable",
  "category": "prose",
  "description": "A row within a Table.",
  "properties": {
    "type": {
      "@id": "schema:type",
      "description": "The name of the type.",
      "type": "string",
      "enum": [
        "TableRow"
      ],
      "default": "TableRow",
      "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"
    },
    "cells": {
      "@id": "stencila:cells",
      "description": "An array of cells in the row.",
      "type": "array",
      "items": {
        "$ref": "TableCell.schema.json"
      },
      "from": "TableRow",
      "aliases": [
        "cell"
      ]
    },
    "rowType": {
      "@id": "stencila:rowType",
      "description": "If present, indicates that all cells in this row should be treated as header cells.\n",
      "type": "string",
      "enum": [
        "header",
        "footer"
      ],
      "from": "TableRow"
    }
  },
  "required": [
    "type",
    "cells"
  ],
  "file": "TableRow.schema.yaml",
  "children": [],
  "descendants": [],
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://schema.stenci.la/v0/TableRow.schema.json",
  "source": "https://github.com/stencila/schema/blob/master/TableRow.schema.yaml",
  "type": "object",
  "propertyAliases": {
    "cell": "cells"
  },
  "additionalProperties": false
}
