MeridianMERIDIAN

URL-Safe Base64 Token

Random token encoded in URL-safe Base64 (uses - and _ instead of + and /). Commonly used for auth tokens, reset links, and secure identifiers.

URL-Safe Base64 Token

technology.cryptographic.token_urlsafe

Random token encoded in URL-safe Base64 (uses - and _ instead of + and /). Commonly used for auth tokens, reset links, and secure identifiers.

Domain
technology
Category
cryptographic
Casts to
VARCHAR
Scope
Universal

Try it

CLI
$ finetype infer -i "SFMyNDI5STExOjEwMQ" --mode column
→ technology.cryptographic.token_urlsafe

DuckDB

Detect
SELECT ft_infer('SFMyNDI5STExOjEwMQ');
-- → 'technology.cryptographic.token_urlsafe'
Cast expression
CAST({col} AS VARCHAR)
Safe cast pipeline
-- Normalise and cast in one step
SELECT TRY_CAST(ft_cast(my_column) AS VARCHAR) AS clean_value
FROM my_table
WHERE ft_infer(my_column) = 'technology.cryptographic.token_urlsafe';

JSON Schema

finetype taxonomy technology.cryptographic.token_urlsafe -o json-schema
{
  "$id": "https://meridian.online/schemas/technology.cryptographic.token_urlsafe",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "description": "Random token encoded in URL-safe Base64 (uses - and _ instead of + and /). Commonly used for auth tokens, reset links, and secure identifiers.",
  "examples": [
    "SFMyNDI5STExOjEwMQ",
    "dGVzdC10b2tlbg",
    "aGVsbG8td29ybGQ"
  ],
  "pattern": "^[A-Za-z0-9_-]{12,128}$",
  "title": "URL-Safe Base64 Token",
  "type": "string",
  "x-finetype-label": "technology.cryptographic.token_urlsafe",
  "x-finetype-pii": false
}

Examples

SFMyNDI5STExOjEwMQdGVzdC10b2tlbgaGVsbG8td29ybGQ

Aliases

urlsafe_token

Type Registry