technology.internet.http_methodHTTP request method (GET, POST, PUT, DELETE, PATCH, HEAD, OPTIONS, TRACE, CONNECT). Broad categorization; lower release priority.
$ finetype infer -i "GET"
→ technology.internet.http_methodSELECT finetype('GET');
-- → 'technology.internet.http_method'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) = 'technology.internet.http_method';{
"$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",
"POST",
"PUT",
"DELETE",
"PATCH",
"HEAD",
"OPTIONS",
"TRACE",
"CONNECT"
],
"examples": [
"GET",
"POST",
"DELETE"
],
"title": "HTTP Method",
"type": "string",
"x-finetype-broad-type": "VARCHAR",
"x-finetype-transform": "CAST({col} AS VARCHAR)"
}GETPOSTDELETE