function removeObjectType()

in generator/processors/Microsoft.Authorization.ts [33:38]


function removeObjectType(property: any) {
    if (property && property['type'] && property['type'] === 'object') {
        delete property['type'];
        delete property['properties'];
    }    
}