diff --git a/inspector-vc/src/main/java/org/oneedtech/inspect/vc/probe/IssuerProbe.java b/inspector-vc/src/main/java/org/oneedtech/inspect/vc/probe/IssuerProbe.java index bb9238b..e9a7472 100644 --- a/inspector-vc/src/main/java/org/oneedtech/inspect/vc/probe/IssuerProbe.java +++ b/inspector-vc/src/main/java/org/oneedtech/inspect/vc/probe/IssuerProbe.java @@ -42,9 +42,9 @@ public class IssuerProbe extends Probe { if (issuer.hasNonNull("otherIdentifier")) { List otherIdentifiers = JsonNodeUtil.asNodeList(issuer.get("otherIdentifier")); for (JsonNode otherIdentifier : otherIdentifiers) { - // check that type contains "IdentityObject" - if (!JsonNodeUtil.asStringList(otherIdentifier.get("type")).contains("IdentityObject")) { - return error("otherIdentifier in issuer is not of type \"IdentityObject\"", ctx); + // check that type contains "IdentifierEntry" + if (!JsonNodeUtil.asStringList(otherIdentifier.get("type")).contains("IdentifierEntry")) { + return error("otherIdentifier in issuer is not of type \"IdentifierEntry\"", ctx); } } }