{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "endpointId": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200,
      "description": "Identifier of the endpoint returned by its create or list operation."
    },
    "retire": {
      "description": "First call with false to issue a new secret, save it and update the receiver. Then call with true to retire the older secret; true alone never rotates.",
      "type": "boolean",
      "default": false
    }
  },
  "required": [
    "endpointId"
  ],
  "additionalProperties": false
}
