export default class PrismRPGCharacterPath extends foundry.abstract.TypeDataModel { static defineSchema() { const fields = foundry.data.fields const schema = {} schema.description = new fields.HTMLField({ required: true, textSearch: true }) return schema } /** @override */ static LOCALIZATION_PREFIXES = ["PRISMRPG.CharacterPath"] }