You can create mandatory attributes, but only the Synergy client will honor it, the Classic ignores the mandatory part.
The way we handle changes to built-in types is that we do:
ccm typedef -export {type} -ef CCM45SP2
The we remove all attribute files in the resulting {type} directoty, all but the cvtype/attr.info_attrs.text, which we edit with our local attributes.
In addition you need to create a new attribute on the project type as well:
required_attributes
where you list the name of the attribute to be manadatory.
In the end you should have two files (after having re-exported the type, or you can just create the file with a text-editor, but please note that you need to verify the filename for the required attributes, as I only made a guess there):
{type}/cvtype/attr.info_attrs.text
{type}/cvtype/attr.required_attributes.text
To deploy them across databases, launch a session with the role type_admin and import the type:
ccm typedef -import {type} -f
pointing to a path where you have stored the template from above.
You could also create a secondary type of the project as you suggest, it depends on the number of attributes tat you are going to work with. A variant type is recommended by IBM, as it will not be touched by an upgrade (as allow_update should be false), while having the project as supertype will allow it to inherit any changes IBM applies to the built-in type.
We have not opted for this solution, as users are already confused by the number of types... If there had been an option to "hide" types by making them inactive the option would be more attractive.
In either case you need to replicate the type definitions when DCM:ing as the target db might not have the new attributes to the type, regardless if you update the built-in type. or create an alternate type.
Hope this helps...
/PeL