{
    "$schema": "https://json-schema.org/draft/2020-12/schema",
    "$id": "https://hemso.example/skjuttabell-schema.json",
    "title": "Hemsö skjuttabell (import)",
    "description": "Förberedd struktur för jämförelse mot simulatorn när tabeller finns.",
    "type": "object",
    "required": ["gunId", "chargeId", "source", "rows"],
    "properties": {
        "gunId": {
            "type": "string",
            "enum": ["kapj-75-57", "kapj-152-51"]
        },
        "chargeId": {
            "type": "string",
            "description": "t.ex. standard, charge-1, charge-2"
        },
        "source": {
            "type": "string",
            "description": "Var tabellen kommer ifrån (arkiv, skrift, skannad PDF …)"
        },
        "notes": { "type": "string" },
        "rows": {
            "type": "array",
            "minItems": 1,
            "items": {
                "type": "object",
                "required": ["rangeM"],
                "properties": {
                    "rangeM": { "type": "number", "description": "Skottavstånd meter" },
                    "elevationDeg": { "type": "number" },
                    "elevationMil": { "type": "number" },
                    "timeOfFlightS": { "type": "number" },
                    "maxOrdinateM": { "type": "number", "description": "Max banhöjd över pjäs, om angivet" }
                }
            }
        }
    }
}
