# Keywords in archetypes sometimes incorrectly represented **Category:** [Clinical](https://discourse.openehr.org/c/clinical/5) **Created:** 2024-07-17 23:30 UTC **Views:** 29 **Replies:** 0 **URL:** https://discourse.openehr.org/t/keywords-in-archetypes-sometimes-incorrectly-represented/5487 --- ## Post #1 by @thomas.beale I recently noticed that some archetypes have keywords formatted as a single String whose contents include commas. E.g. this from `CLUSTER.person`: ```keywords = <"provider, carer, staff, healthcare professional, relative, next-of-kin, practitioner, witness, friend, neighbour, child, family, sibling, parent, individual", ...>``` Depending on what tools do with this, the entire string will be understood as a keyword, and will never be directly matched in a search; only wildcard matching will work. The correct form is the following, as from `CLUSTER.problem_qualifier`. ```keywords = <"problem", "active", "inactive", "status", "episode", "diagnosis">``` I'd suggest that as tools (including CKM) and organisations rely more on tools for discovery, this problem could be rectified by an automated sweep through CKM archetypes to correct the problem. --- **Canonical:** https://discourse.openehr.org/t/keywords-in-archetypes-sometimes-incorrectly-represented/5487 **Original content:** https://discourse.openehr.org/t/keywords-in-archetypes-sometimes-incorrectly-represented/5487