representation.text.emojiSingle emoji character or emoji sequence.
$ finetype infer -i "š"
ā representation.text.emojiSELECT finetype('š');
-- ā 'representation.text.emoji'CAST({col} AS VARCHAR)-- Normalise and cast in one step
SELECT TRY_CAST(finetype_cast(my_column) AS VARCHAR) AS clean_value
FROM my_table
WHERE finetype(my_column) = 'representation.text.emoji';{
"$id": "https://meridian.online/schemas/representation.text.emoji",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "Single emoji character or emoji sequence.",
"examples": [
"š",
"š",
"ā¤ļø",
"š"
],
"pattern": "^[\\p{So}\\p{Sk}\\p{Mn}\\p{Cf}]+$",
"title": "Emoji",
"type": "string",
"x-finetype-broad-type": "VARCHAR",
"x-finetype-transform": "CAST({col} AS VARCHAR)"
}ššā¤ļøš