Schema for Skeleton Skeleton Options

From Options.schema.yaml (skeleton/Options.schema)

---
$id: https://skeleton.botmd.io/skeleton/Options.schema
$schema: http://json-schema.org/draft-07/schema#

type: object

title: Skeleton Options
description: Options for customizing the schema during build and tests.

additionalProperties: false

properties:
  hasTests:
    type: boolean

    title: Have Tests
    description: Whether there are tests for the schema. If tests are not defined, but `hasTests` is true, the test suite will fail.
    default: true
  #end hasTests

  hasDocs:
    type: boolean

    title: Have Docs
    description: Whether a documentation link will be generated for the schema.
    default: true
  #end hasDocs

  sortName:
    type: string

    title: Sort Name
    description: Typically, schemas are sorted by name in the documentation. This field will override the name for sorting the schema.
    default: Original name of the schema
#end properties

[Main Page] [Schema Documentation] [Examples]