AckdbAttributePatchRequest

Edit an attribute's metadata (any subset of the fields its `editableFields` lists). `key` and `type` are always immutable. A custom attribute takes label/description/allowedValues; a STANDARD one takes `allowedValues` alone (#487). `scope` is the exclusive contact → person migration (#474) and must be the only field in the request.

Properties

labelstring
descriptionstring (nullable)
allowedValuesarray of
string
scopestring

Scope migration (#474) — only "person".

"person"
dryRunboolean

Scope migration only: run the full cascade and roll back.

Example

AckdbAttributePatchRequest example
{
  "label": "string",
  "description": "string",
  "allowedValues": [
    "string"
  ],
  "scope": "person",
  "dryRun": false
}