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
