I am trying to validate an XML response retrieved from RestAssured with a list of XSDs which are referenced within.
I tried
given().param(...).when().get(URL).then().assertThat().body(matchesXsd(xsd))
This works if I have one XSDs file which contains all schema definitions but how can I have multiple XSDs? These XSDs are also referenced within themselves. Also, all XSDs are local to the project.
I tried Rest-Assured XSD References Other XSDs and Validate an XML File Against Multiple Schema Definitions and few more but they were either irrelevant to my goal or didn't work for me.