RE: [regrep-cc-review] [ADDITIONAL THOUGHT]Re: [regrep-cc-review] ASCCs/ASBIEs Revisited

From
CRAWFORD, Mark <>
Date
2003-06-24T14:39:27+00:00
ID
Thread
RE: [regrep-cc-review] [ADDITIONAL THOUGHT]Re: [regrep-cc-review] ASCCs/ASBIEs Revisited
A couple of points -

As a reminder - CCs (BCC, ACC, ASCC) will NEVER be used to create an instance document.  Only BIEs.

The following schema snipet and instance document based on the ASBIE example in CCTS Section 4 was being used last week by CEFACT XML group to develop XML rules for CCTS. Forgive the errors - we were using a german keyboard and just focusing on alignment of CCTS to CEFACT XML design rules rather that valid code - but it does convey to this group how we see the various pieces of the CCTS being used to create XML instances.

ComplexType name="USPersonDetailsType"
sequence
element name = 'Name' type ='TextType'
element name='BirthDate' type='DateType'
element name'<USOfficialAddress' type='USAddressDetailsType'
element name=USResidence type=USAddressDetailsType'
/sequence
/ComplexType
 
ComplexType name ='USAddressDetailsType'
sequence
element name='street' type='TextType'
element name='ZipPostCode' type='TextType'
element name='Town' type='TextType'
sequence
/ComplexType
 
<USPerson>
     <Name>Melanie</Name>
     <BirthDate>1965.06.06</BirthDate>
     <USOfficialAddress>
          <Street>HarperStreet</Street>
          <ZipPostCode>12345</ZipPostCode>
          <Town>Connor</Town>
      </USOfficialAddress>
<USResidence>
          <Street><harmony lane</Street> 
          <ZipPostCode>12432</ZipPostCode>
          <Town>Oz</Town>
 </USResidence>