Files
flex-auth/schemas/caring_profile.schema.json
tegwick 7fdf6d63d5
Some checks failed
CI / Build and Test (push) Has been cancelled
CI / Lint (push) Has been cancelled
Implement canonical schema foundation
2026-05-17 04:59:18 +02:00

17 lines
607 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://flex-auth.netkingdom/schemas/caring_profile.schema.json",
"title": "CaringProfile",
"description": "Machine-readable pin for a CARING profile supported by flex-auth.",
"type": "object",
"additionalProperties": false,
"required": ["id", "standard", "version"],
"properties": {
"id": {"const": "caring-0.4.0-rc2"},
"standard": {"const": "CARING"},
"version": {"const": "0.4.0-RC2"},
"source": {"type": "string", "minLength": 1},
"metadata": {"type": "object", "additionalProperties": true}
}
}