Skip to content

HTTP Method

Type Registry

HTTP Method

technology.internet.http_method

HTTP request method (GET, POST, PUT, DELETE, PATCH, HEAD, OPTIONS, TRACE, CONNECT). Broad categorization; lower release priority.

Domain technologyinternet
Casts to VARCHAR
Scope broad_words

Try it

CLI
$ finetype infer -i "GET"
→ technology.internet.http_method

DuckDB

Detect
SELECT finetype('GET');
-- → 'technology.internet.http_method'
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) = 'technology.internet.http_method';

JSON Schema

finetype schema technology.internet.http_method
{
  "$id": "https://noon.sh/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"
}

Examples

GETPOSTDELETE

Types in technology