T402 API Reference - v2.8.0
Website
Documentation
GitHub
Preparing search index...
extensions/src
QueryDiscoveryExtension
Interface QueryDiscoveryExtension
Discovery extension for query parameter methods (GET, HEAD, DELETE)
interface
QueryDiscoveryExtension
{
info
:
QueryDiscoveryInfo
;
schema
:
{
$schema
:
"https://json-schema.org/draft/2020-12/schema"
;
type
:
"object"
;
properties
:
{
input
:
{
type
:
"object"
;
properties
:
{
type
:
{
type
:
"string"
;
const
:
"http"
}
;
method
:
{
type
:
"string"
;
enum
:
QueryParamMethods
[]
}
;
queryParams
?:
{
type
:
"object"
;
properties
?:
Record
<
string
,
unknown
>
;
required
?:
string
[]
;
additionalProperties
?:
boolean
;
}
;
headers
?:
{
type
:
"object"
;
additionalProperties
:
{
type
:
"string"
}
}
;
}
;
required
:
(
"type"
|
"method"
)
[]
;
additionalProperties
?:
boolean
;
}
;
output
?:
{
type
:
"object"
;
properties
?:
Record
<
string
,
unknown
>
;
required
?:
readonly
string
[]
;
additionalProperties
?:
boolean
;
}
;
}
;
required
:
[
"input"
]
;
}
;
}
Index
Properties
info
schema
Properties
info
info
:
QueryDiscoveryInfo
schema
schema
:
{
$schema
:
"https://json-schema.org/draft/2020-12/schema"
;
type
:
"object"
;
properties
:
{
input
:
{
type
:
"object"
;
properties
:
{
type
:
{
type
:
"string"
;
const
:
"http"
}
;
method
:
{
type
:
"string"
;
enum
:
QueryParamMethods
[]
}
;
queryParams
?:
{
type
:
"object"
;
properties
?:
Record
<
string
,
unknown
>
;
required
?:
string
[]
;
additionalProperties
?:
boolean
;
}
;
headers
?:
{
type
:
"object"
;
additionalProperties
:
{
type
:
"string"
}
}
;
}
;
required
:
(
"type"
|
"method"
)
[]
;
additionalProperties
?:
boolean
;
}
;
output
?:
{
type
:
"object"
;
properties
?:
Record
<
string
,
unknown
>
;
required
?:
readonly
string
[]
;
additionalProperties
?:
boolean
;
}
;
}
;
required
:
[
"input"
]
;
}
Settings
Member Visibility
Inherited
Theme
OS
Light
Dark
On This Page
Properties
info
schema
Website
Documentation
GitHub
T402 API Reference - v2.8.0
Loading...
Discovery extension for query parameter methods (GET, HEAD, DELETE)