{
    "$schema": "https://json-schema.org/draft/2020-12/schema",
    "$id": "https://efrei.fr/student.schema.json",
    "title": "Edutudiant",
    "description": "Un étudiant de l'EFREI",
    "type": "object",
    "properties":{
        "codePerm":{"type":"string"},
        "nom":{"type":"string"},
        "prenom":{"type":"string"},
        "cours":{
            "type":"array",
            "items":{
                "type":"object",
                "properties":{
                    "sigle":{"type":"string"},
                    "credits":{"type":"integer"},
                    "reprise":{"type":"boolean"}
                },
                "required":["sigle","credits"]
            }
        },
        "required":["codePerm","nom","prenom","cours"]
    }
  }