bali182 / autocomplete-json

Atom autocomplete for JSON files

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add support for patternProperties

bali182 opened this issue · comments

patternProperties could come handy for something like the following schema part (borrowed from https://github.com/fungusakafungus/cloudformation-jsonschema):

"patternProperties": {
    ".*": {
        "type": "object",
        "properties": {
            "Value": {
                "type": "object"
            },
            "Description": {
                "type": "string"
            }
        },
        "required": ["Value"]
    }
}