I replaced the types that were there.
It would be easiest to show an image but since images aren't allowed here, this is the text from the .plist file in the app:
The UITypeTage is in the UTExportedTypeDeclarations.
The extension to the email data file is "visionPF". This is added to the file name in the app when creating the email attachment.
<key>CFBundleDocumentTypes</key>
<array>
<dict>
<key>CFBundleTypeIconFiles</key>
<array>
<string> blah blah blah path to icon image </string>
<string>VisionEmailIcon.png</string>
</array>
<key>CFBundleTypeName</key>
<string>VisionFliteSettings File</string>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>LSHandlerRank</key>
<string>Owner</string>
<key>LSItemContentTypes</key>
<array>
<string>Damian-s.${PRODUCT_NAME:rfc1034identifier}</string>
</array>
</dict>
</array>
<key>UTExportedTypeDeclarations</key>
<array>
<dict>
<key>UTTypeConformsTo</key>
<array>
<string>public.data</string>
</array>
<key>UTTypeDescription</key>
<string>VisionFliteSettings File</string>
<key>UTTypeIconFiles</key>
<array>
<string>VisionEmailIcon.png</string>
</array>
<key>UTTypeIdentifier</key>
<string>Damian-s.${PRODUCT_NAME:rfc1034identifier}</string>
<key>UTTypeTagSpecification</key>
<dict>
<key>public.filename-extension</key>
<array>
<string>visionPF</string>
</array>
</dict>
</dict>
</array>