31 lines
No EOL
921 B
JSON
31 lines
No EOL
921 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "https://example.com/units.json",
|
|
"title": "Units",
|
|
"description": "Units",
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"required": [ "name" ],
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"name": { "type": "string" },
|
|
"conversions": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": [ "to", "ratio" ],
|
|
"properties": {
|
|
"to": { "type": "string" },
|
|
"ratio": { "type": "integer" }
|
|
}
|
|
}
|
|
},
|
|
"aliases": {
|
|
"type": "array",
|
|
"items": { "type": "string" }
|
|
}
|
|
}
|
|
}
|
|
} |