APIs.io Engineering Platform · Schema
SdkType
A type of SDK that API Gateway can generate.
APIs.ioEngineeringPlatform
Properties
| Name | Type | Description |
|---|---|---|
| id | object | |
| friendlyName | object | |
| description | object | |
| configurationProperties | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SdkType",
"title": "SdkType",
"type": "object",
"properties": {
"id": {
"allOf": [
{
"$ref": "#/components/schemas/String"
},
{
"description": "The identifier of an SdkType instance."
}
]
},
"friendlyName": {
"allOf": [
{
"$ref": "#/components/schemas/String"
},
{
"description": "The user-friendly name of an SdkType instance."
}
]
},
"description": {
"allOf": [
{
"$ref": "#/components/schemas/String"
},
{
"description": "The description of an SdkType."
}
]
},
"configurationProperties": {
"allOf": [
{
"$ref": "#/components/schemas/ListOfSdkConfigurationProperty"
},
{
"description": "A list of configuration properties of an SdkType."
}
]
}
},
"description": "A type of SDK that API Gateway can generate."
}