17 lines
410 B
YAML
17 lines
410 B
YAML
$id: "https://example.com/person.schema.json"
|
|
$schema: "http://json-schema.org/draft-07/schema"
|
|
title: Application
|
|
type: object
|
|
|
|
properties:
|
|
name:
|
|
type: string
|
|
title: Name of the application
|
|
|
|
license:
|
|
type: [string, "null"]
|
|
title: SPDX Expression representing the license of the database.
|
|
description: |-
|
|
If the software uses a proprietary license, use `null` to indicate that.
|
|
|
|
|