13 lines
482 B
JSON
13 lines
482 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "https://example.org/schema/license-trust-store-v1.json",
|
|
"title": "Licence Trust Store",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": ["licenseKeys", "leaseKeys"],
|
|
"properties": {
|
|
"licenseKeys": {"type": "object", "additionalProperties": {"type": "string", "minLength": 40}},
|
|
"leaseKeys": {"type": "object", "additionalProperties": {"type": "string", "minLength": 40}}
|
|
}
|
|
}
|