HTTP Method
HTTP request method (GET, POST, PUT, DELETE, PATCH, HEAD, OPTIONS, TRACE, CONNECT). Broad categorization; lower release priority.
HTTP Method
technology.internet.http_methodHTTP request method (GET, POST, PUT, DELETE, PATCH, HEAD, OPTIONS, TRACE, CONNECT). Broad categorization; lower release priority.
Domain
technology
Category
internet
Casts to
VARCHAR
Scope
broad_words
Try it
CLI
$ finetype infer -i "GET" --mode column
→ technology.internet.http_methodDuckDB
Detect
SELECT ft_infer('GET');
-- → 'technology.internet.http_method'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.internet.http_method';JSON Schema
finetype taxonomy technology.internet.http_method -o json-schema
{
"$id": "https://meridian.online/schemas/technology.internet.http_method",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "HTTP request method (GET, POST, PUT, DELETE, PATCH, HEAD, OPTIONS, TRACE, CONNECT). Broad categorization; lower release priority.",
"enum": [
"GET",
"Get",
"get",
"POST",
"Post",
"post",
"PUT",
"Put",
"put",
"DELETE",
"Delete",
"delete",
"PATCH",
"Patch",
"patch",
"HEAD",
"Head",
"head",
"OPTIONS",
"Options",
"options",
"TRACE",
"Trace",
"trace",
"CONNECT",
"Connect",
"connect"
],
"examples": [
"GET",
"post",
"Delete"
],
"pattern": "^(GET|Get|get|POST|Post|post|PUT|Put|put|DELETE|Delete|delete|PATCH|Patch|patch|HEAD|Head|head|OPTIONS|Options|options|TRACE|Trace|trace|CONNECT|Connect|connect)$",
"title": "HTTP Method",
"type": "string",
"x-finetype-label": "technology.internet.http_method",
"x-finetype-pii": false
}Examples
GETpostDelete