Files
fx_cast/docs/ua.schema.json
2025-12-27 02:15:19 +00:00

23 lines
733 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$defs": {
"ua_string": { "type": "string", "minLength": 1 }
},
"properties": {
"$schema": { "type": "string" },
"version": { "type": "integer", "const": 1 },
"platforms": {
"type": "object",
"properties": {
"win": { "$ref": "#/$defs/ua_string" },
"mac": { "$ref": "#/$defs/ua_string" },
"linux": { "$ref": "#/$defs/ua_string" }
},
"required": ["win", "mac", "linux"],
"additionalProperties": false
}
},
"required": ["version", "platforms"],
"additionalProperties": false
}