workers_secret-response

APIs.ioEngineeringPlatform

Properties

Name Type Description
name string The name of this secret, this is what will be used to access it inside the Worker.
type string The type of secret.
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-workers-secret-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/workers_secret-response",
  "title": "workers_secret-response",
  "properties": {
    "name": {
      "description": "The name of this secret, this is what will be used to access it inside the Worker.",
      "example": "MY_SECRET",
      "type": "string"
    },
    "type": {
      "description": "The type of secret.",
      "enum": [
        "secret_text"
      ],
      "example": "secret_text",
      "type": "string"
    }
  },
  "type": "object"
}