{
    "type": "object",
    "title": "Configuration Bureau TAJ",
    "properties": {
        "loadingTime": {
            "type": "integer",
            "title": "Temps de chargement TAJ (ms)",
            "default": 3000,
            "minimum": 1000,
            "maximum": 10000
        },
        "wallpaper": {
            "type": "object",
            "title": "Fond d'écran",
            "properties": {
                "type": {
                    "type": "string",
                    "title": "Type",
                    "enum": ["gradient", "color", "image"],
                    "default": "gradient"
                },
                "value": {
                    "type": "string",
                    "title": "Valeur (CSS gradient, couleur ou chemin image)",
                    "default": "linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #1e3c72 100%)"
                }
            }
        },
        "icons": {
            "type": "array",
            "title": "Icônes du bureau",
            "items": {
                "type": "object",
                "properties": {
                    "name": {
                        "type": "string",
                        "title": "Nom"
                    },
                    "type": {
                        "type": "string",
                        "title": "Type",
                        "enum": ["folder", "pdf", "txt", "app", "trash"],
                        "default": "folder"
                    },
                    "action": {
                        "type": "string",
                        "title": "Action (ID fenêtre à ouvrir)"
                    }
                }
            }
        },
        "windows": {
            "type": "array",
            "title": "Fenêtres",
            "items": {
                "type": "object",
                "properties": {
                    "id": {
                        "type": "string",
                        "title": "ID unique"
                    },
                    "title": {
                        "type": "string",
                        "title": "Titre"
                    },
                    "type": {
                        "type": "string",
                        "title": "Type",
                        "enum": ["image", "explorer", "specific"],
                        "default": "image"
                    },
                    "image": {
                        "type": "string",
                        "title": "Image (pour type image)",
                        "links": [{"rel": "Source", "href": "#files"}]
                    },
                    "component": {
                        "type": "string",
                        "title": "Composant (pour type specific)"
                    },
                    "path": {
                        "type": "string",
                        "title": "Chemin (pour type explorer)"
                    },
                    "files": {
                        "type": "array",
                        "title": "Fichiers (pour type explorer)",
                        "items": {
                            "type": "object",
                            "properties": {
                                "name": { "type": "string", "title": "Nom" },
                                "type": { "type": "string", "enum": ["folder", "pdf", "txt"], "default": "folder" }
                            }
                        }
                    },
                    "x": {
                        "type": "string",
                        "title": "Position X",
                        "default": "100px"
                    },
                    "y": {
                        "type": "string",
                        "title": "Position Y",
                        "default": "100px"
                    },
                    "width": {
                        "type": "string",
                        "title": "Largeur",
                        "default": "400px"
                    },
                    "height": {
                        "type": "string",
                        "title": "Hauteur",
                        "default": "300px"
                    }
                }
            }
        }
    }
}