SdkType

A type of SDK that API Gateway can generate.

APIs.ioEngineeringPlatform

Properties

Name Type Description
id object
friendlyName object
description object
configurationProperties object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-sdktype-schema.json Raw ↑
{
  "$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."
}