Skip to content

Occupation

Type Registry

Occupation

identity.person.occupation

Job title or profession (Engineer, Manager, Teacher, etc.). Broad categorization due to variance in naming and standardization.

Domain identityperson
Casts to VARCHAR
Scope broad_words

Try it

CLI
$ finetype infer -i "Software Engineer"
→ identity.person.occupation

DuckDB

Detect
SELECT finetype('Software Engineer');
-- → 'identity.person.occupation'
Cast expression
CAST({col} AS VARCHAR)
Safe cast pipeline
-- 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) = 'identity.person.occupation';

JSON Schema

finetype schema identity.person.occupation
{
  "$id": "https://noon.sh/schemas/identity.person.occupation",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "description": "Job title or profession (Engineer, Manager, Teacher, etc.). Broad categorization due to variance in naming and standardization.",
  "examples": [
    "Software Engineer",
    "Data Scientist",
    "Product Manager",
    "Nurse"
  ],
  "maxLength": 100,
  "minLength": 2,
  "title": "Occupation",
  "type": "string"
}

Examples

Software EngineerData ScientistProduct ManagerNurse

Also known as

job_titleprofession

Types in identity