Skip to content

Commit

Permalink
add uuid to list of primitive types hapifhir#862
Browse files Browse the repository at this point in the history
  • Loading branch information
dhufnagel committed Jul 14, 2022
1 parent 2aef63e commit 0547e17
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,6 @@ public static List<WildcardInformation> wildcards(String version) {
}

public static boolean isPrimitive(String code) {
return Utilities.existsInList(code, "boolean", "integer", "integer64", "string", "decimal", "uri", "url", "canonical", "base64Binary", "instant", "date", "dateTime", "time", "code", "oid", "id", "markdown", "unsignedInt", "positiveInt", "xhtml");
return Utilities.existsInList(code, "boolean", "integer", "integer64", "string", "decimal", "uri", "url", "uuid", "canonical", "base64Binary", "instant", "date", "dateTime", "time", "code", "oid", "id", "markdown", "unsignedInt", "positiveInt", "xhtml");
}
}

0 comments on commit 0547e17

Please sign in to comment.