JSON Object type

interface JsonObject {
    [x: string]: JsonPrimitive | JsonArray | JsonObject;
}

Indexable