{
  "$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."
    },
    "state": {
      "type": "string",
      "enum": [
        "active",
        "disabled"
      ],
      "description": "Requested resource state or saved-observation filter, as enumerated here."
    }
  },
  "required": [
    "endpointId",
    "state"
  ],
  "additionalProperties": false
}
