{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/QuarantineUserAction", "title": "QuarantineUserAction", "type": "object", "properties": { "type": { "type": "integer", "enum": [ 4 ], "allOf": [ { "$ref": "#/components/schemas/AutomodActionType" } ], "format": "int32" }, "metadata": { "oneOf": [ { "type": "null" }, { "$ref": "#/components/schemas/QuarantineUserActionMetadata" } ] } }, "required": [ "type" ] }