Reputation: 343
The situation:
For a project we have a schema (lets call it a-forgiving) which has around 200 fields mapped in separate groups. In this schema all fields are optional as the security rights of the caller do not allow to see all fields.
But there are also users needing the nearly same schema, lets call it a-strict, which has exactly the same fields and structure, but nothing is optional in it.
Other points:
My question is:
Is there a nice & easy way to map our internal schema to both of these a-schemas? I saw only one possibility:
Does anyone have a better idea or had a similar situation before?
Would be great if someone sees a good solution.
Upvotes: 0
Views: 71
Reputation: 11040
If the Target Namespace for Forgiving and Strict is different, then they are different schemas. That's how you should look at it.
They may be structurally identical, but they're still different schemas and should be treated as such. Meaning, two Maps.
Upvotes: 1