Can we use describeSObject to get the fields from a Person Account?
Normally we would use the following to get the fields from an Object:
Map<String, Schema.SObjectType> gd = Schema.getGlobalDescribe();
Map<String, Schema.SObjectField> fieldMap = schemaMap.get('Account').getDescribe().fields.getMap();
How can we distinguish Person Account Fields from Business Account Fields?