Boltic · Schema

CertificateInput

AutomationDataSyncGatewaysNoCodeStreamingWorkflows

Properties

Name Type Description
cert string
key string
snis array
View JSON Schema on GitHub

JSON Schema

boltic-certificateinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CertificateInput",
  "title": "CertificateInput",
  "type": "object",
  "required": [
    "cert",
    "key"
  ],
  "properties": {
    "cert": {
      "type": "string"
    },
    "key": {
      "type": "string"
    },
    "snis": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}