Merge · Schema

SecretSchemaPublic

IntegrationsPlatformUnified APIAgent HandlerLLM Gateway

Properties

Name Type Description
name string
human_readable_name stringnull
prefix stringnull
suffix stringnull
field_type string
options arraynull
View JSON Schema on GitHub

JSON Schema

merge-secretschemapublic-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SecretSchemaPublic",
  "title": "SecretSchemaPublic",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "human_readable_name": {
      "type": [
        "string",
        "null"
      ]
    },
    "prefix": {
      "type": [
        "string",
        "null"
      ]
    },
    "suffix": {
      "type": [
        "string",
        "null"
      ]
    },
    "field_type": {
      "type": "string"
    },
    "options": {
      "type": [
        "array",
        "null"
      ],
      "items": {
        "$ref": "#/components/schemas/SecretOptionPublic"
      }
    }
  },
  "required": [
    "name",
    "human_readable_name",
    "prefix",
    "suffix",
    "field_type",
    "options"
  ]
}