UNPKG

15.5 kBMarkdownView Raw
1# πŸ“‘ Schema
2
3**Extensions to schema.org to support semantic, composable, parameterize-able and executable documents**
4
5<br>
6
7[![Build Status](https://dev.azure.com/stencila/stencila/_apis/build/status/stencila.schema?branchName=master)](https://dev.azure.com/stencila/stencila/_build/latest?definitionId=9&branchName=master)
8[![Code coverage](https://codecov.io/gh/stencila/schema/branch/master/graph/badge.svg)](https://codecov.io/gh/stencila/schema)
9[![Netlify](https://img.shields.io/netlify/b0e0d714-29f1-4ad1-8a7d-1af7799fb85b)](https://app.netlify.com/sites/stencila-schema/deploys)
10[![Community](https://img.shields.io/badge/join-community-green.svg)](https://discord.gg/uFtQtk9)
11
12
13| |||
14|--|-------|-------------|
15JSON-LD | [![Context](https://img.shields.io/badge/json--ld-%40context-success)](https://schema.stenci.la/stencila.jsonld) | [![Docs](https://img.shields.io/badge/docs-latest-blue.svg)](https://schema.stenci.la)
16JSON Schema | [![Schema](https://img.shields.io/badge/json%20schema-v1-success)](https://unpkg.com/browse/@stencila/schema@1/dist/) | [![Docs](https://img.shields.io/badge/docs-latest-blue.svg)](https://schema.stenci.la)
17TypeScript/JavaScript | [![NPM](https://img.shields.io/npm/v/@stencila/schema.svg?style=flat)](https://www.npmjs.com/package/@stencila/schema) | [![Docs](https://img.shields.io/badge/docs-latest-blue.svg)](https://stencila.github.io/schema/ts/docs) |
18Python | [![PyPI](https://img.shields.io/pypi/v/stencila-schema.svg)](https://pypi.org/project/stencila-schema) | [![Docs](https://img.shields.io/badge/docs-latest-blue.svg)](https://stencila.github.io/schema/python/docs) |
19R | [![CRAN](https://www.r-pkg.org/badges/version/stencilaschema)](https://cran.r-project.org/web/packages/stencilaschema/) | [![Docs](https://img.shields.io/badge/docs-latest-blue.svg)](https://stencila.github.io/schema/r/docs) |
20Rust | [![Crates.io](https://img.shields.io/crates/v/stencila-schema)](https://crates.io/crates/stencila-schema) | [![Docs](https://img.shields.io/badge/docs-latest-blue.svg)](https://docs.rs/stencila-schema/latest/stencila_schema/)
21
22<br>
23
24## πŸ‘‹ Introduction
25
26This is the Stencila Schema, an extension to [schema.org](https://schema.org) to support semantic, composable, parameterize-able and executable documents (we call them _stencils_ for short). It also provides implementations of schema.org types (and our extensions) for several languages including JSON Schema, Typescript, Python and R. It is a central part of our platform that is used widely throughout our open-source tools as the data model for executable documents.
27
28### Why an extension to schema.org?
29
30Schema.org is _"a collaborative, community activity with a mission to create, maintain, and promote schemas for structured data on the Internet, on web pages, in email messages, and beyond."_. Schema.org is is used by most major search engines to provide richer, more semantic, search results. More and more web sites are using the schema.org vocabulary and there is increasing uptake in the research community e.g. bioschemas.org, codemeta.github.io
31
32The [schema.org vocabulary](https://schema.org/docs/full.html) encompasses many varied concepts and topics. Of particular relevance to Stencila are types for research outputs such as [`ScholarlyArticle`](https://schema.org/CreativeWork), [`Dataset`](https://schema.org/Dataset) and [`SoftwareSourceCode`](https://schema.org/SoftwareSourceCode) and their associated meta data e.g. [`Person`](https://schema.org/Person), [`Organization`](https://schema.org/Organization), and [`Organization`](https://schema.org/Organization).
33
34However, schema.org does not provide types for the _content_ of research articles. This is where our extensions come in. This schema adds types (and some properties to existing types) to be able to represent a complete executable, research article. These extensions types include "static" _nodes_ such as [`Paragraph`](https://schema.stenci.la/paragraph), [`Heading`](https://schema.stenci.la/heading) and [`Figure`](https://schema.stenci.la/figure), and "dynamic" nodes involved in execution such as [`CodeChunk`](https://schema.stenci.la/codechunk) and [`Parameter`](https://schema.stenci.la/parameter).
35
36### It's about names, not formats
37
38An important aspect of schema.org and similar vocabularies are that they really just define a shared way of naming things. They are format agnostic. As schema.org says, it can be used with _"many different encodings, including RDFa, Microdata and JSON-LD"_.
39
40We extend this philosophy to the encoding of executable articles, allowing them to be encoded in several existing document formats. For example, the following very small [`Article`](https://schema.stenci.la/article), containing only one [`Paragraph`](https://schema.stenci.la/paragraph), and with no metadata, can be represented in Markdown:
41
42```md
43Hello world!
44```
45
46as YAML,
47
48```yaml
49type: Article
50content:
51 - type: Paragraph
52 content:
53 - Hello world!
54```
55
56as a Jupyter Notebook,
57
58```json
59{
60 "nbformat": 4,
61 "nbformat_minor": 4,
62 "metadata": {
63 "title": ""
64 },
65 "cells": [
66 {
67 "cell_type": "markdown",
68 "metadata": {},
69 "source": ["Hello world!"]
70 }
71 ]
72}
73```
74
75as JSON-LD,
76
77```json
78{
79 "@context": "http://schema.stenci.la/v1/jsonld/",
80 "type": "Article",
81 "content": [
82 {
83 "type": "Paragraph",
84 "content": ["Hello world!"]
85 }
86 ]
87}
88```
89
90or as HTML with Microdata,
91
92```html
93<article itemscope="" itemtype="http://schema.org/Article">
94 <p itemscope="" itemtype="http://schema.stenci.la/Paragraph">Hello world!</p>
95</article>
96```
97
98This repository does not deal with format conversion per se. Please see [Encoda](https://github.com/stencila/encoda) for that. However, when developing our schema.org extensions, we aimed to not reinvent the wheel and maintain consistency and compatibility with existing _schemas_ for representing document content. Those include:
99
100- [JATS XML](https://jats.nlm.nih.gov/)
101- [MDAST](https://github.com/syntax-tree/mdast)
102- [Open Document Format](http://docs.oasis-open.org/office/v1.2/OpenDocument-v1.2-part1.html)
103- [Pandoc Types](https://github.com/jgm/pandoc-types)
104
105### But, sometimes (often) we need more than just names
106
107Despite its name, schema.org does not define strong rules around the _shape_ of data, as say a database schema or XML schema does. All the properties of schema.org types are optional, and although they have "expected types", this is not enforced. In addition, properties can be singular values or array, but always have a singular name. For example, a `Article` has a `author` property which could be undefined, a string, a `Person` or an `Organization`, or an array of `Person` or `Organization` items.
108
109This flexibility makes a lot of sense for the primary purpose of schema.org: semantic annotation of other content. However, for use as an internal data model, as in Stencila, it can result in a lot of defensive code to check exactly which of these alternatives a property value is. And writing more code than you need to is A Bad Thingβ„’.
110
111Instead, we wanted a schema that placed some restrictions on the shape of executable documents. This has flow on benefits for developer experience such as type inference and checking. To achieve this the Stencila Schema defines schema.org types using JSON Schema. Yes, that's a lot of "schemas", but bear with us...
112
113### Using JSON Schema for validation and type safety
114
115[JSON Schema](https://json-schema.org/) is _"a vocabulary that allows you to annotate and validate JSON documents"_. It is a draft internet standard, which like schema.org has a growing adoption e.g. [schemastore.org](https://www.schemastore.org/json/).
116
117In Stencila Schema, when we define a type of document node, either a schema.org type, or an extension, we define it,
118
119- as a JSON Schema document, with restrictions on the marginality, type and shape of it's properties
120- using schema.org type and property names, pluralized as appropriate to avoid confusion
121
122For example, an `Article` is defined to have an optional `authors` property (note the `s` this time) which is always an array whose items are either a `Person` or `Organization`.
123
124```json
125{
126 "title": "Article",
127 "@id": "schema:Article",
128 "description": "An article, including news and scholarly articles.",
129 "properties": {
130 "authors": {
131 "@id": "schema:author",
132 "description": "The authors of this creative work.",
133 "type": "array",
134 "items": {
135 "anyOf": [
136 {
137 "$ref": "Person.schema.json"
138 },
139 {
140 "$ref": "Organization.schema.json"
141 }
142 ]
143 }
144 }
145...
146
147```
148
149_To keep things simpler, this is a stripped down version of the actual[`Person.schema.json`](https://schema.stenci.la/Person.schema.json)._
150
151With a JSON Schema, we are able to:
152
153- use a JSON Schema validator to check that content meets the schema
154- generate types (i.e. `interface` and `class` elements) matching the schema in other languages.
155
156### But, JSON Schema can be a pain to write
157
158JSON can be quite fiddly to write by hand. And JSON Schema lacks a way to easily express parent-child relationships between types. For these reasons, we define types using YAML with custom keywords such as `extends` and generate JSON Schema and ultimately bindings for each language from those.
159
160## πŸ“œ Documentation
161
162Documentation is available at https://schema.stenci.la/.
163
164Alternatively, you may want to directly consult the type definitions (`*.yaml` files) and documentation (`*.md` files) in the [`schema`](schema) directory.
165
166## πŸš€ Usage
167
168### JSON-LD context
169
170A JSON-LD `@context` is generated from the JSON Schema sources and published at https://schema.stenci.la/stencila.jsonld.
171
172Individual files are published for each extension type e.g. https://schema.stenci.la/CodeChunk.jsonld and extension property e.g. https://schema.stenci.la/rowspan.jsonld
173
174### Programming language bindings
175
176Binding for this schema, in the form of installable packages, are currently generated for:
177
178- [Python](https://stencila.github.io/schema/python/docs)
179- [R](https://stencila.github.io/schema/r/docs)
180- [Typescript](https://stencila.github.io/schema/ts/docs)
181
182Depending on the capabilities of the host language, these packages expose type definitions as well as utility functions for constructing valid Stencila Schema nodes. Each packages has its own documentation auto-generated from the code.
183
184## πŸ›  Contributing
185
186We πŸ’• contributions! All contributions: ideas πŸ€”, examples πŸ’‘, bug reports πŸ›, documentation πŸ“–, code πŸ’», questions πŸ’¬.
187
188Please see [CONTRIBUTING.md](CONTRIBUTING.md) for a guide on how to contribute to the schema definitions. See the `README.md` files of each language sub-folder e.g. [`python`](python) for advice on development of language bindings and [issue](https://github.com/stencila/schema/issues/256) for how to add you or others to the following _important_ table:
189
190<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
191<!-- prettier-ignore-start -->
192<!-- markdownlint-disable -->
193<table>
194 <tr>
195 <td align="center"><a href="http://has100ideas.com"><img src="https://avatars0.githubusercontent.com/u/57006?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Mac Cowell</b></sub></a><br /><a href="https://github.com/stencila/schema/commits?author=100ideas" title="Code">πŸ’»</a> <a href="#ideas-100ideas" title="Ideas, Planning, & Feedback">πŸ€”</a></td>
196 <td align="center"><a href="http://toki.io"><img src="https://avatars1.githubusercontent.com/u/10161095?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Jacqueline</b></sub></a><br /><a href="https://github.com/stencila/schema/commits?author=jwijay" title="Code">πŸ’»</a> <a href="https://github.com/stencila/schema/commits?author=jwijay" title="Documentation">πŸ“–</a> <a href="#ideas-jwijay" title="Ideas, Planning, & Feedback">πŸ€”</a></td>
197 <td align="center"><a href="https://github.com/beneboy"><img src="https://avatars1.githubusercontent.com/u/292725?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Ben Shaw</b></sub></a><br /><a href="https://github.com/stencila/schema/commits?author=beneboy" title="Code">πŸ’»</a> <a href="#ideas-beneboy" title="Ideas, Planning, & Feedback">πŸ€”</a> <a href="#infra-beneboy" title="Infrastructure (Hosting, Build-Tools, etc)">πŸš‡</a> <a href="https://github.com/stencila/schema/commits?author=beneboy" title="Documentation">πŸ“–</a></td>
198 <td align="center"><a href="http://ketch.me"><img src="https://avatars2.githubusercontent.com/u/1646307?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Alex Ketch</b></sub></a><br /><a href="https://github.com/stencila/schema/commits?author=alex-ketch" title="Code">πŸ’»</a> <a href="https://github.com/stencila/schema/commits?author=alex-ketch" title="Documentation">πŸ“–</a> <a href="#design-alex-ketch" title="Design">🎨</a></td>
199 <td align="center"><a href="https://github.com/nokome"><img src="https://avatars0.githubusercontent.com/u/1152336?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Nokome Bentley</b></sub></a><br /><a href="https://github.com/stencila/schema/commits?author=nokome" title="Code">πŸ’»</a> <a href="https://github.com/stencila/schema/commits?author=nokome" title="Documentation">πŸ“–</a> <a href="#ideas-nokome" title="Ideas, Planning, & Feedback">πŸ€”</a></td>
200 <td align="center"><a href="https://github.com/asisiuc"><img src="https://avatars0.githubusercontent.com/u/17000527?v=4?s=100" width="100px;" alt=""/><br /><sub><b>asisiuc</b></sub></a><br /><a href="https://github.com/stencila/schema/commits?author=asisiuc" title="Code">πŸ’»</a> <a href="#ideas-asisiuc" title="Ideas, Planning, & Feedback">πŸ€”</a></td>
201 <td align="center"><a href="https://github.com/apawlik"><img src="https://avatars2.githubusercontent.com/u/2358535?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Aleksandra Pawlik</b></sub></a><br /><a href="https://github.com/stencila/schema/commits?author=apawlik" title="Code">πŸ’»</a> <a href="https://github.com/stencila/schema/commits?author=apawlik" title="Documentation">πŸ“–</a> <a href="#ideas-apawlik" title="Ideas, Planning, & Feedback">πŸ€”</a></td>
202 </tr>
203 <tr>
204 <td align="center"><a href="https://vsoch.github.io"><img src="https://avatars0.githubusercontent.com/u/814322?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Vanessasaurus</b></sub></a><br /><a href="#ideas-vsoch" title="Ideas, Planning, & Feedback">πŸ€”</a> <a href="https://github.com/stencila/schema/commits?author=vsoch" title="Code">πŸ’»</a></td>
205 <td align="center"><a href="https://github.com/rgieseke"><img src="https://avatars.githubusercontent.com/u/198537?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Robert Gieseke</b></sub></a><br /><a href="#ideas-rgieseke" title="Ideas, Planning, & Feedback">πŸ€”</a> <a href="https://github.com/stencila/schema/commits?author=rgieseke" title="Code">πŸ’»</a> <a href="https://github.com/stencila/schema/commits?author=rgieseke" title="Documentation">πŸ“–</a></td>
206 </tr>
207</table>
208
209<!-- markdownlint-restore -->
210<!-- prettier-ignore-end -->
211
212<!-- ALL-CONTRIBUTORS-LIST:END -->
213
214## πŸ™ Acknowledgments
215
216Thanks to the developers of the existing schemas and open source tools we use, or have been inspired by, including:
217
218- [BioSchemas](https://bioschemas.org/)
219- [CiTO](http://www.sparontologies.net/ontologies/cito)
220- [CodeMeta](https://codemeta.github.io)
221- [JSON Schema](https://json-schema.org/)
222- [Schema.org](https://schema.org)