Thanks for sending it. Looking at your data model, I can't find an attribute called "areaDescription" in the InspectionArea entity, while you're declaring the entity's class definition with this attribute in the property names:
SCClassDefinition *inspAreaClassDef =
[SCClassDefinition definitionWithEntityName:@"InspectionArea"
withManagedObjectContext:managedObjectContext
withPropertyNames:[NSArray arrayWithObjects:@"notes", @"areaDescription", nil]];
This explains why areaDescription is not showing in the generated STV model. Please tell me if you need any more help.