this is the dtd representation of what i need to convert in xml schema:
<!ELEMENT Atomic (CmdID, NoResp?, Meta?, (Add | Replace | Delete | Copy | Atomic | Map | Move | Sequence | Sync | Get | Exec | Alert)+)>
That is, I want to allow every element inside the paranthesis to be present no matter how many times(without this being necessary), as long as at least one of them is present at least once.
Any help will be appreciated:)
<!ELEMENT Atomic (CmdID, NoResp?, Meta?, (Add | Replace | Delete | Copy | Atomic | Map | Move | Sequence | Sync | Get | Exec | Alert)+)>
That is, I want to allow every element inside the paranthesis to be present no matter how many times(without this being necessary), as long as at least one of them is present at least once.
Any help will be appreciated:)
Comment