npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@stencila/schema

v1.18.0

Published

Extensions to schema.org to support semantic, composable, parameterize-able and executable documents

Downloads

4,066

Readme

📑 Schema

Extensions to schema.org to support semantic, composable, parameterize-able and executable documents

Build Status Code coverage Netlify Community

| | | | | --------------------- | ----------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------- | | JSON-LD | Context | Docs | | JSON Schema | Schema | Docs | | TypeScript/JavaScript | NPM | Docs | | Python | PyPI | Docs | | R | CRAN | Docs | | Rust | Crates.io | Docs |

👋 Introduction

This is the Stencila Schema, an extension to 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.

Why an extension to schema.org?

Schema.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

The schema.org vocabulary encompasses many varied concepts and topics. Of particular relevance to Stencila are types for research outputs such as ScholarlyArticle, Dataset and SoftwareSourceCode and their associated meta data e.g. Person, Organization, and Organization.

However, 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, Heading and Figure, and "dynamic" nodes involved in execution such as CodeChunk and Parameter.

It's about names, not formats

An 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".

We 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, containing only one Paragraph, and with no metadata, can be represented in Markdown:

Hello world!

as YAML,

type: Article
content:
  - type: Paragraph
    content:
      - Hello world!

as a Jupyter Notebook,

{
  "nbformat": 4,
  "nbformat_minor": 4,
  "metadata": {
    "title": ""
  },
  "cells": [
    {
      "cell_type": "markdown",
      "metadata": {},
      "source": ["Hello world!"]
    }
  ]
}

as JSON-LD,

{
  "@context": "https://schema.stenci.la/v1/jsonld/",
  "type": "Article",
  "content": [
    {
      "type": "Paragraph",
      "content": ["Hello world!"]
    }
  ]
}

or as HTML with Microdata,

<article itemscope="" itemtype="https://schema.org/Article">
  <p itemscope="" itemtype="https://schema.stenci.la/Paragraph">Hello world!</p>
</article>

This repository does not deal with format conversion per se. Please see 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:

But, sometimes (often) we need more than just names

Despite 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.

This 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™.

Instead, 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...

Using JSON Schema for validation and type safety

JSON Schema 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.

In Stencila Schema, when we define a type of document node, either a schema.org type, or an extension, we define it,

  • as a JSON Schema document, with restrictions on the marginality, type and shape of it's properties
  • using schema.org type and property names, pluralized as appropriate to avoid confusion

For 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.

{
  "title": "Article",
  "@id": "schema:Article",
  "description": "An article, including news and scholarly articles.",
  "properties": {
    "authors": {
      "@id": "schema:author",
      "description": "The authors of this creative work.",
      "type": "array",
      "items": {
        "anyOf": [
          {
            "$ref": "Person.schema.json"
          },
          {
            "$ref": "Organization.schema.json"
          }
        ]
      }
    }
...

To keep things simpler, this is a stripped down version of the actualPerson.schema.json.

With a JSON Schema, we are able to:

  • use a JSON Schema validator to check that content meets the schema
  • generate types (i.e. interface and class elements) matching the schema in other languages.

But, JSON Schema can be a pain to write

JSON 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.

📜 Documentation

Documentation is available at https://schema.stenci.la/.

Alternatively, you may want to directly consult the type definitions (*.yaml files) and documentation (*.md files) in the schema directory.

🚀 Usage

JSON-LD context

A JSON-LD @context is generated from the JSON Schema sources and published at https://schema.stenci.la/stencila.jsonld.

Individual 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

Programming language bindings

Binding for this schema, in the form of installable packages, are currently generated for:

Depending 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.

🛠 Contributing

We 💕 contributions! All contributions: ideas 🤔, examples 💡, bug reports 🐛, documentation 📖, code 💻, questions 💬.

Please see 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 for advice on development of language bindings and issue for how to add you or others to the following important table:

🙏 Acknowledgments

Thanks to the developers of the existing schemas and open source tools we use, or have been inspired by, including: