MeridianMERIDIAN

taxonomy

Browse and filter the FineType type taxonomy — domains, categories, and individual types.

List and filter the full FineType taxonomy. Use taxonomy to explore available types, check what's in a domain, or export the complete taxonomy for tooling.

Usage

finetype taxonomy [OPTIONS]

Options

FlagTypeDefaultDescription
-f, --filepathlabelsTaxonomy file or directory
-d, --domainstringFilter by domain
-c, --categorystringFilter by category
--priorityintegerMinimum release priority
-o, --outputstringplainOutput format: plain, json, csv, markdown, arrow
--fullflagExport all fields (including schemas, examples, transforms)

Examples

List all types

$ finetype taxonomy

Prints every type in the taxonomy, grouped by domain and category.

Filter by domain

$ finetype taxonomy -d datetime

Show only types in the datetime domain — dates, times, timestamps, durations.

Filter by category

$ finetype taxonomy -c identity.person

Show types in the identity.person category — email, full name, username, and others.

Full export as JSON

$ finetype taxonomy --full -o json > taxonomy.json

The --full flag includes every field: schemas, examples, transforms, PII flags, and broad types. This is the same export used to generate the Type Registry on this site.

See also

  • schema — export the full JSON Schema for a specific type
  • infer — classify a value and see which type it matches
  • Type Registry — browse the taxonomy on the web

On this page