Plane docs
ApiSchemas

Secret

One shape from the contract, as it appears on the wire.

Used by secrets.list, secrets.upsert

JSON Schema

{
  "type": "object",
  "properties": {
    "id": {
      "$ref": "#/components/schemas/SecretId"
    },
    "name": {
      "$ref": "#/components/schemas/ProviderName"
    },
    "description": {
      "type": "string"
    },
    "createdAt": {
      "type": "string"
    },
    "updatedAt": {
      "type": "string"
    }
  },
  "required": [
    "id",
    "name",
    "createdAt",
    "updatedAt"
  ],
  "additionalProperties": false
}

On this page