@stencila/schema
Version:
Stencila schema and other specifications
25 lines (24 loc) • 471 B
YAML
title: List
'@id': schema:ItemList
$extends: ../Thing.schema.yaml
role: secondary
status: unstable
description: |
A list of items.
properties:
items:
'@id': 'schema:itemListElement'
description: The items in the list
type: array
items:
$ref: Node.schema.yaml
order:
'@id': 'schema:itemListOrder'
description: Type of ordering.
enum:
- ascending
- descending
- unordered
default: unordered
required:
- items