@stencila/schema
Version:
Extensions to schema.org to support semantic, composable, parameterize-able and executable documents
73 lines (72 loc) • 1.74 kB
JSON
{
"title": "TableRow",
"@id": "stencila:TableRow",
"extends": "Entity",
"role": "secondary",
"status": "unstable",
"category": "text",
"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",
"isArray": true,
"isPlural": true,
"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/v1/TableRow.schema.json",
"source": "https://github.com/stencila/schema/blob/master/schema/TableRow.schema.yaml",
"type": "object",
"propertyAliases": {
"cell": "cells"
},
"additionalProperties": false
}