TO0100 - npruehs/tome-editor GitHub Wiki

"The type ... of the field ... does not exist."

Summary

  • Name: FieldTypeDoesNotExist
  • Code: TO0100
  • Category: Model Integrity
  • Severity: Error
  • Since: 0.4

Each field must have exactly one type, either a built-in type or a custom type. This type is required for providing the correct windows and controls when modifying record fields of these types, and for serializing and exporting project data.

Example

The following steps generate this type of error:

  1. Create a new custom type.
  2. Create a new field of that custom type.
  3. Delete the custom type.

How To Fix

Either

  • change the type of the field to an existing type, or
  • create a custom type with the name of the type referenced by the field.