I'm trying to create a content type that will inherit from the Contact content type (that comes with SharePoint). I need most of the fields in there but would like to be able to remove some of them.
Is there a way I can remove the fields I don't want through the XML definition of the Content Type?
<Elements xmlns="http://schemas.microsoft.com/sharepoint/">
<ContentType ID="0x01004B56BB872BFE984D9611B5D8CF52CB60" Name="Child Contact" Description="Inherits from Contact" Group="...">
<FieldRefs>
??? What would I put there to remove fields that exist in the parent?
</FieldRefs>
</ContentType>
</Elements>