{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "sailpoint.isc.transforms.base64Decode.schema.json",
  "title": "SailPoint ISC Transform Schema - base64Decode",
  "description": "Strict schema derived from SailPoint official Base64 Decode operation docs. Note: This operation has no 'attributes' block; it acts on the incoming value (implicit input). Null handling (runtime): if incoming input is null, transform returns null.",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "type",
    "name"
  ],
  "properties": {
    "type": {
      "const": "base64Decode"
    },
    "name": {
      "type": "string",
      "minLength": 1
    },
    "requiresPeriodicRefresh": {
      "type": "boolean",
      "default": false,
      "description": "Whether the transform should be reevaluated nightly during identity refresh."
    }
  },
  "examples": [
    {
      "type": "base64Decode",
      "name": "Base64 Decode Transform"
    },
    {
      "type": "base64Decode",
      "name": "Base64 Decode Transform with Image",
      "requiresPeriodicRefresh": false
    }
  ]
}
