{
    "definitions": {},
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "http://dynamicsmobile.com/schema/json/translations.json",
    "additionalProperties": false,
    "title": "Dynamics Mobile i18n",
    "defaultSnippets": [
        {
            "label": "Resources",
            "description": "Add resources prop",
            "body": {
                "resources": []
            }
        }
    ],
    "type": "object",
    "properties": {
        "resources": {
            "type": "array",
            "items": {
                "defaultSnippets": [
                    {
                        "label": "New i18n Entry",
                        "description": "Creates translation entry",
                        "body": {
                            "name": "$1",
                            "text": "$2"
                        }
                    }
                ],
                "type": "object",
                "additionalProperties": false,
                "properties": {
                    "name": {
                        "type": "string"
                    },
                    "text": {
                        "type": "string"
                    }
                },
                "required": [
                    "name",
                    "text"
                ]
            }
        }
    }
}