{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/QuarantinedIdentifierEntry", "title": "QuarantinedIdentifierEntry", "type": "object", "properties": { "created_by": { "allOf": [ { "$ref": "#/components/schemas/UserBasicInfo" } ], "nullable": true }, "id": { "type": "string", "format": "uuid" }, "identifier": { "type": "string" }, "run_type": { "type": "string" }, "reason": { "type": "string" }, "expires_at": { "type": "string", "format": "date-time", "nullable": true }, "created_at": { "type": "string", "format": "date-time" }, "updated_at": { "type": "string", "format": "date-time" } }, "required": [ "created_at", "expires_at", "id", "identifier", "reason", "run_type", "updated_at" ] }