{
"type": "object",
"properties": {
"queryOptions": {
"title": "queryOptions",
"type": "object",
"properties": {
"contains": {
"type": "string",
"description": "Filter the response based on each item that includes the provided query.",
"examples": [
"git",
"hub",
"v5"
]
},
"containsField": {
"type": "string",
"enum": [
"versionId"
]
},
"equals": {
"type": "string",
"description": "Filter the response based on each item that is an exact match to the provided query.",
"examples": [
"GitHub:v5"
]
},
"equalsField": {
"type": "string",
"enum": [
"versionId"
]
},
"startsWith": {
"type": "string",
"description": "Filter the response based on each item that starts with the provided query.",
"examples": [
"g"
]
},
"startsWithField": {
"type": "string",
"enum": [
"versionId"
]
},
"skip": {
"$ref": "common-schema#/definitions/skip"
},
"limit": {
"$ref": "common-schema#/definitions/limit"
},
"sort": {
"type": "string",
"description": "Field to sort by. Default is versionId.",
"enum": [
"versionId"
]
},
"order": {
"$ref": "common-schema#/definitions/order"
}
}
}
},
"required": [
"queryOptions"
],
"additionalProperties": false
}
Return
DetailsExampleSchema
Name
Type
Description
result
object
Contains the data for all integration models.
Copied to Clipboard
{
"integrationModels": {
"model": "@itential/adapter_GitHub:v5",
"versionId": "GitHub:v5",
"description": "A standard description about the integration model"
},
"total": 5
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"integrationModels": {
"type": "object",
"properties": {
"model": {
"type": "string",
"examples": [
"@itential/adapter_GitHub:v5"
]
},
"versionId": {
"type": "string",
"examples": [
"GitHub:v5"
]
},
"description": {
"type": "string",
"examples": [
"A standard description about the integration model"
]
},
"properties": {
"type": "object",
"description": "Refer to OpenAPI specifications for the available properties for this OpenAPI document."
}
}
},
"total": {
"$ref": "common-schema#/definitions/total"
}
}
}