[xsd-users] problem with xsd and parse xml

giuseppe ferrari giuseppe500 at yahoo.it
Tue Jan 18 09:12:58 EST 2011


hy.
I'm trying to generate the c++ code for parse/serialize an ifc document with 
CodeSynthesis XSD 3.3.
The ifc is an architectonic xml format file
and this is the url where my files come
http://www.iai-tech.org/products/ifc_specification/ifcxml-releases/ifcxml2x3-release

This is the xsd command that generate my code:
xsd cxx-tree --generate-serialization --file-per-type --generate-polymorphic 
--namespace-map 
urn:iso.org:standard:10303:part(28):version(2):xmlschema:common=ex 
--namespace-map http://www.iai-tech.org/ifcXML/IFC2x3/FINAL=ifc --output-dir 
test ifc2x3.xsd
then i add my files (cxx and hxx) to the solution in vs 2003 , set the input lib 
file and add the needs include .
Then compiling , all  work fine
My problem is that when i do the parsing an ifcxml  the c++ code catch these 
errors:
this is the code:
try
    {
   
        auto_ptr<ex::iso_10303_28> h 
(ex::iso_10303_28_("c:\\esempioifcxml.xml"));
       
    }
    catch (const xml_schema::exception& e)
    {
        cerr << e << endl;
        char ch;
        cin >> ch;
        return 1;
    }
these are the errors :
c:\esempioifcxml.xml:127:26 error: undefined prefix in QName value 'ifc:IfcUnit'
c:\esempioifcxml.xml:161:33 error: undefined prefix in QName value 
'ifc:IfcLengthMeasure'
c:\esempioifcxml.xml:202:43 error: undefined prefix in QName value 
'ifc:IfcRepresentationContext'
c:\esempioifcxml.xml:347:27 error: undefined prefix in QName value 
'ifc:IfcPresentationStyleSelect'
c:\esempioifcxml.xml:361:33 error: undefined prefix in QName value 
'ifc:IfcLengthMeasure'
c:\esempioifcxml.xml:379:31 error: undefined prefix in QName value 
'ifc:IfcFillStyleSelect'
c:\esempioifcxml.xml:384:27 error: undefined prefix in QName value 
'ifc:IfcPresentationStyleSelect'
c:\esempioifcxml.xml:389:27 error: undefined prefix in QName value 
'ifc:IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:397:26 error: undefined prefix in QName value 
'ifc:IfcRepresentationItem'
c:\esempioifcxml.xml:402:37 error: undefined prefix in QName value 
'ifc:IfcRepresentation'
c:\esempioifcxml.xml:417:36 error: undefined prefix in QName value 
'ifc:IfcMaterialLayer'
c:\esempioifcxml.xml:431:33 error: undefined prefix in QName value 
'ifc:IfcLengthMeasure'
c:\esempioifcxml.xml:467:39 error: undefined prefix in QName value 
'ifc:IfcRepresentation'
c:\esempioifcxml.xml:480:26 error: undefined prefix in QName value 
'ifc:IfcRepresentationItem'
c:\esempioifcxml.xml:482:30 error: undefined prefix in QName value 
'ifc:IfcCartesianPoint'
c:\esempioifcxml.xml:484:37 error: undefined prefix in QName value 
'ifc:IfcLengthMeasure'
what's mean?

I find a problem:



<uos id="uos_1" description="" configuration="i-ifc2x3" edo=""
        xmlns="http://www.iai-tech.org/ifcXML/IFC2x3/FINAL"
        
xmlns:ex="urn:iso.org:standard:10303:part(28):version(2):xmlschema:common"
        xsi:schemaLocation="http://www.iai-tech.org/ifcXML/IFC2x3/FINAL 
IFC2X3.xsd">
        <IfcOrganization id="i1556">
            <Id>GS</Id>
            <Name>Graphisoft</Name>
            <Description>Graphisoft</Description>
        </IfcOrganization>



if i use this code i get the errors that i have posted.
But i see that there is a problem on namespaces , indeed if i change the xml 
namespace in the code :


<uos id="uos_1" description="" configuration="i-ifc2x3" edo=""
        xmlns="urn:iso.org:standard:10303:part(28):version(2):xmlschema:common"
        
xmlns:ex="urn:iso.org:standard:10303:part(28):version(2):xmlschema:common"
        xsi:schemaLocation="http://www.iai-tech.org/ifcXML/IFC2x3/FINAL 
IFC2X3.xsd">
        <IfcOrganization id="i1556">
            <Id>GS</Id>
            <Name>Graphisoft</Name>
            <Description>Graphisoft</Description>
        </IfcOrganization>


there are no errors in the parsing phase without validation.

auto_ptr<ex::iso_10303_28> h 
(ex::iso_10303_28_("c:\\esempioifcxml.xml",xml_schema::flags::dont_validate));

but if i add validation i get a lot of these errors of the kind:

auto_ptr<ex::iso_10303_28> h (ex::iso_10303_28_("c:\\esempioifcxml.xml"));

a block of errors from error2.txt
c:\esempioifcxml.xml:20:79 error: element 'uos' is abstract; use non-abstract 
member of its substitution group instead
c:\esempioifcxml.xml:21:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21:31 error: no declaration found for element 
'IfcOrganization'
c:\esempioifcxml.xml:21:31 error: attribute 'id' is not declared for element 
'IfcOrganization'
c:\esempioifcxml.xml:26:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26:30 error: no declaration found for element 
'IfcApplication'
c:\esempioifcxml.xml:26:30 error: attribute 'id' is not declared for element 
'IfcApplication'
c:\esempioifcxml.xml:34:3 error: no character data is allowed by content model
i attach all the files that i'm using:
the .xsd  the xml model (esempioifcxml.xml) and the errors (error2.txt)
thanks


      
-------------- next part --------------
A non-text attachment was scrubbed...
Name: configuration.xsd
Type: application/octet-stream
Size: 7973 bytes
Desc: not available
Url : http://codesynthesis.com/pipermail/xsd-users/attachments/20110118/a661d41f/configuration-0001.obj
-------------- next part --------------
A non-text attachment was scrubbed...
Name: ex.xsd
Type: application/octet-stream
Size: 8915 bytes
Desc: not available
Url : http://codesynthesis.com/pipermail/xsd-users/attachments/20110118/a661d41f/ex-0001.obj
-------------- next part --------------
A non-text attachment was scrubbed...
Name: IFC2X3.xsd
Type: application/octet-stream
Size: 716573 bytes
Desc: not available
Url : http://codesynthesis.com/pipermail/xsd-users/attachments/20110118/a661d41f/IFC2X3-0001.obj
-------------- next part --------------

c:\esempioifcxml.xml:20:79 error: element 'uos' is abstract; use non-abstract member of its substitution group instead
c:\esempioifcxml.xml:21:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21:31 error: no declaration found for element 'IfcOrganization'
c:\esempioifcxml.xml:21:31 error: attribute 'id' is not declared for element 'IfcOrganization'
c:\esempioifcxml.xml:26:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26:30 error: no declaration found for element 'IfcApplication'
c:\esempioifcxml.xml:26:30 error: attribute 'id' is not declared for element 'IfcApplication'
c:\esempioifcxml.xml:34:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:34:25 error: no declaration found for element 'IfcPerson'
c:\esempioifcxml.xml:34:25 error: attribute 'id' is not declared for element 'IfcPerson'
c:\esempioifcxml.xml:39:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:39:31 error: no declaration found for element 'IfcOrganization'
c:\esempioifcxml.xml:39:31 error: attribute 'id' is not declared for element 'IfcOrganization'
c:\esempioifcxml.xml:44:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:44:40 error: no declaration found for element 'IfcPersonAndOrganization'
c:\esempioifcxml.xml:44:40 error: attribute 'id' is not declared for element 'IfcPersonAndOrganization'
c:\esempioifcxml.xml:52:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:52:31 error: no declaration found for element 'IfcOwnerHistory'
c:\esempioifcxml.xml:52:31 error: attribute 'id' is not declared for element 'IfcOwnerHistory'
c:\esempioifcxml.xml:62:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:62:25 error: no declaration found for element 'IfcSIUnit'
c:\esempioifcxml.xml:62:25 error: attribute 'id' is not declared for element 'IfcSIUnit'
c:\esempioifcxml.xml:67:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:67:25 error: no declaration found for element 'IfcSIUnit'
c:\esempioifcxml.xml:67:25 error: attribute 'id' is not declared for element 'IfcSIUnit'
c:\esempioifcxml.xml:71:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:71:25 error: no declaration found for element 'IfcSIUnit'
c:\esempioifcxml.xml:71:25 error: attribute 'id' is not declared for element 'IfcSIUnit'
c:\esempioifcxml.xml:75:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:75:25 error: no declaration found for element 'IfcSIUnit'
c:\esempioifcxml.xml:75:25 error: attribute 'id' is not declared for element 'IfcSIUnit'
c:\esempioifcxml.xml:79:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:79:34 error: no declaration found for element 'IfcMeasureWithUnit'
c:\esempioifcxml.xml:79:34 error: attribute 'id' is not declared for element 'IfcMeasureWithUnit'
c:\esempioifcxml.xml:87:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:87:39 error: no declaration found for element 'IfcDimensionalExponents'
c:\esempioifcxml.xml:87:39 error: attribute 'id' is not declared for element 'IfcDimensionalExponents'
c:\esempioifcxml.xml:96:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:96:38 error: no declaration found for element 'IfcConversionBasedUnit'
c:\esempioifcxml.xml:96:38 error: attribute 'id' is not declared for element 'IfcConversionBasedUnit'
c:\esempioifcxml.xml:106:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:106:25 error: no declaration found for element 'IfcSIUnit'
c:\esempioifcxml.xml:106:25 error: attribute 'id' is not declared for element 'IfcSIUnit'
c:\esempioifcxml.xml:110:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:110:25 error: no declaration found for element 'IfcSIUnit'
c:\esempioifcxml.xml:110:25 error: attribute 'id' is not declared for element 'IfcSIUnit'
c:\esempioifcxml.xml:114:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:114:25 error: no declaration found for element 'IfcSIUnit'
c:\esempioifcxml.xml:114:25 error: attribute 'id' is not declared for element 'IfcSIUnit'
c:\esempioifcxml.xml:118:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:118:25 error: no declaration found for element 'IfcSIUnit'
c:\esempioifcxml.xml:118:25 error: attribute 'id' is not declared for element 'IfcSIUnit'
c:\esempioifcxml.xml:122:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:122:25 error: no declaration found for element 'IfcSIUnit'
c:\esempioifcxml.xml:122:25 error: attribute 'id' is not declared for element 'IfcSIUnit'
c:\esempioifcxml.xml:126:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:126:33 error: no declaration found for element 'IfcUnitAssignment'
c:\esempioifcxml.xml:126:33 error: attribute 'id' is not declared for element 'IfcUnitAssignment'
c:\esempioifcxml.xml:139:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:139:28 error: no declaration found for element 'IfcDirection'
c:\esempioifcxml.xml:139:28 error: attribute 'id' is not declared for element 'IfcDirection'
c:\esempioifcxml.xml:146:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:146:28 error: no declaration found for element 'IfcDirection'
c:\esempioifcxml.xml:146:28 error: attribute 'id' is not declared for element 'IfcDirection'
c:\esempioifcxml.xml:153:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:153:28 error: no declaration found for element 'IfcDirection'
c:\esempioifcxml.xml:153:28 error: attribute 'id' is not declared for element 'IfcDirection'
c:\esempioifcxml.xml:160:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:160:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:160:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:167:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:167:35 error: no declaration found for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:167:35 error: attribute 'id' is not declared for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:178:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:178:28 error: no declaration found for element 'IfcDirection'
c:\esempioifcxml.xml:178:28 error: attribute 'id' is not declared for element 'IfcDirection'
c:\esempioifcxml.xml:184:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:184:49 error: no declaration found for element 'IfcGeometricRepresentationContext'
c:\esempioifcxml.xml:184:49 error: attribute 'id' is not declared for element 'IfcGeometricRepresentationContext'
c:\esempioifcxml.xml:196:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:196:26 error: no declaration found for element 'IfcProject'
c:\esempioifcxml.xml:196:26 error: attribute 'id' is not declared for element 'IfcProject'
c:\esempioifcxml.xml:211:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:211:49 error: no declaration found for element 'IfcGeometricRepresentationContext'
c:\esempioifcxml.xml:211:49 error: attribute 'id' is not declared for element 'IfcGeometricRepresentationContext'
c:\esempioifcxml.xml:228:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:228:49 error: no declaration found for element 'IfcGeometricRepresentationContext'
c:\esempioifcxml.xml:228:49 error: attribute 'id' is not declared for element 'IfcGeometricRepresentationContext'
c:\esempioifcxml.xml:245:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:245:33 error: no declaration found for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:245:33 error: attribute 'id' is not declared for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:250:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:250:23 error: no declaration found for element 'IfcSite'
c:\esempioifcxml.xml:250:23 error: attribute 'id' is not declared for element 'IfcSite'
c:\esempioifcxml.xml:271:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:271:33 error: no declaration found for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:271:33 error: attribute 'id' is not declared for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:279:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:279:27 error: no declaration found for element 'IfcBuilding'
c:\esempioifcxml.xml:279:27 error: attribute 'id' is not declared for element 'IfcBuilding'
c:\esempioifcxml.xml:290:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:290:35 error: no declaration found for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:290:35 error: attribute 'id' is not declared for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:301:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:301:33 error: no declaration found for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:301:33 error: attribute 'id' is not declared for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:309:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:309:33 error: no declaration found for element 'IfcBuildingStorey'
c:\esempioifcxml.xml:309:33 error: attribute 'id' is not declared for element 'IfcBuildingStorey'
c:\esempioifcxml.xml:321:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:321:27 error: no declaration found for element 'IfcMaterial'
c:\esempioifcxml.xml:321:27 error: attribute 'id' is not declared for element 'IfcMaterial'
c:\esempioifcxml.xml:324:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:324:52 error: no declaration found for element 'IfcGeometricRepresentationSubContext'
c:\esempioifcxml.xml:324:52 error: attribute 'id' is not declared for element 'IfcGeometricRepresentationSubContext'
c:\esempioifcxml.xml:333:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:333:28 error: no declaration found for element 'IfcColourRgb'
c:\esempioifcxml.xml:333:28 error: attribute 'id' is not declared for element 'IfcColourRgb'
c:\esempioifcxml.xml:338:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:338:48 error: no declaration found for element 'IfcDraughtingPreDefinedCurveFont'
c:\esempioifcxml.xml:338:48 error: attribute 'id' is not declared for element 'IfcDraughtingPreDefinedCurveFont'
c:\esempioifcxml.xml:341:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:341:29 error: no declaration found for element 'IfcCurveStyle'
c:\esempioifcxml.xml:341:29 error: attribute 'id' is not declared for element 'IfcCurveStyle'
c:\esempioifcxml.xml:346:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:346:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:346:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:351:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:351:29 error: no declaration found for element 'IfcCurveStyle'
c:\esempioifcxml.xml:351:29 error: attribute 'id' is not declared for element 'IfcCurveStyle'
c:\esempioifcxml.xml:360:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:360:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:360:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:366:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:366:40 error: no declaration found for element 'IfcFillAreaStyleHatching'
c:\esempioifcxml.xml:366:40 error: attribute 'id' is not declared for element 'IfcFillAreaStyleHatching'
c:\esempioifcxml.xml:378:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:378:32 error: no declaration found for element 'IfcFillAreaStyle'
c:\esempioifcxml.xml:378:32 error: attribute 'id' is not declared for element 'IfcFillAreaStyle'
c:\esempioifcxml.xml:383:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:383:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:383:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:388:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:388:29 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:388:29 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:393:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:393:39 error: no declaration found for element 'IfcStyledRepresentation'
c:\esempioifcxml.xml:393:39 error: attribute 'id' is not declared for element 'IfcStyledRepresentation'
c:\esempioifcxml.xml:401:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:401:51 error: no declaration found for element 'IfcMaterialDefinitionRepresentation'
c:\esempioifcxml.xml:401:51 error: attribute 'id' is not declared for element 'IfcMaterialDefinitionRepresentation'
c:\esempioifcxml.xml:409:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:409:32 error: no declaration found for element 'IfcMaterialLayer'
c:\esempioifcxml.xml:409:32 error: attribute 'id' is not declared for element 'IfcMaterialLayer'
c:\esempioifcxml.xml:416:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:416:35 error: no declaration found for element 'IfcMaterialLayerSet'
c:\esempioifcxml.xml:416:35 error: attribute 'id' is not declared for element 'IfcMaterialLayerSet'
c:\esempioifcxml.xml:422:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:422:40 error: no declaration found for element 'IfcMaterialLayerSetUsage'
c:\esempioifcxml.xml:422:40 error: attribute 'id' is not declared for element 'IfcMaterialLayerSetUsage'
c:\esempioifcxml.xml:430:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:430:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:430:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:437:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:437:35 error: no declaration found for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:437:35 error: attribute 'id' is not declared for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:448:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:448:33 error: no declaration found for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:448:33 error: attribute 'id' is not declared for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:456:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:456:35 error: no declaration found for element 'IfcWallStandardCase'
c:\esempioifcxml.xml:456:35 error: attribute 'id' is not declared for element 'IfcWallStandardCase'
c:\esempioifcxml.xml:474:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:474:38 error: no declaration found for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:474:38 error: attribute 'id' is not declared for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:499:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:499:38 error: no declaration found for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:499:38 error: attribute 'id' is not declared for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:563:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:563:40 error: no declaration found for element 'IfcRelAssociatesMaterial'
c:\esempioifcxml.xml:563:40 error: attribute 'id' is not declared for element 'IfcRelAssociatesMaterial'
c:\esempioifcxml.xml:575:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:575:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:575:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:581:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:581:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:581:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:587:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:587:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:587:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:593:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:593:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:593:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:599:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:599:27 error: no declaration found for element 'IfcPolyline'
c:\esempioifcxml.xml:599:27 error: attribute 'id' is not declared for element 'IfcPolyline'
c:\esempioifcxml.xml:608:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:608:44 error: no declaration found for element 'IfcArbitraryClosedProfileDef'
c:\esempioifcxml.xml:608:44 error: attribute 'id' is not declared for element 'IfcArbitraryClosedProfileDef'
c:\esempioifcxml.xml:614:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:614:28 error: no declaration found for element 'IfcDirection'
c:\esempioifcxml.xml:614:28 error: attribute 'id' is not declared for element 'IfcDirection'
c:\esempioifcxml.xml:621:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:621:35 error: no declaration found for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:621:35 error: attribute 'id' is not declared for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:632:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:632:36 error: no declaration found for element 'IfcExtrudedAreaSolid'
c:\esempioifcxml.xml:632:36 error: attribute 'id' is not declared for element 'IfcExtrudedAreaSolid'
c:\esempioifcxml.xml:644:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:644:38 error: no declaration found for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:644:38 error: attribute 'id' is not declared for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:654:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:654:41 error: no declaration found for element 'IfcProductDefinitionShape'
c:\esempioifcxml.xml:654:41 error: attribute 'id' is not declared for element 'IfcProductDefinitionShape'
c:\esempioifcxml.xml:659:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:659:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:659:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:666:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:666:35 error: no declaration found for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:666:35 error: attribute 'id' is not declared for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:677:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:677:33 error: no declaration found for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:677:33 error: attribute 'id' is not declared for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:685:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:685:33 error: no declaration found for element 'IfcOpeningElement'
c:\esempioifcxml.xml:685:33 error: attribute 'id' is not declared for element 'IfcOpeningElement'
c:\esempioifcxml.xml:698:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:698:34 error: no declaration found for element 'IfcRelVoidsElement'
c:\esempioifcxml.xml:698:34 error: attribute 'id' is not declared for element 'IfcRelVoidsElement'
c:\esempioifcxml.xml:710:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:710:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:710:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:717:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:717:35 error: no declaration found for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:717:35 error: attribute 'id' is not declared for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:728:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:728:33 error: no declaration found for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:728:33 error: attribute 'id' is not declared for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:736:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:736:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:736:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:743:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:743:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:743:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:750:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:750:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:750:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:757:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:757:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:757:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:764:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:764:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:764:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:771:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:771:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:771:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:778:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:778:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:778:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:785:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:785:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:785:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:792:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:792:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:792:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:799:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:799:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:799:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:806:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:806:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:806:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:813:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:813:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:813:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:820:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:820:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:820:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:827:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:827:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:827:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:834:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:834:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:834:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:841:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:841:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:841:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:848:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:848:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:848:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:855:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:855:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:855:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:862:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:862:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:862:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:869:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:869:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:869:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:876:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:876:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:876:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:883:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:883:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:883:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:890:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:890:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:890:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:897:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:897:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:897:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:904:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:904:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:904:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:911:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:911:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:911:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:918:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:918:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:918:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:925:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:925:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:925:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:932:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:932:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:932:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:939:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:939:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:939:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:946:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:946:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:946:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:953:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:953:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:953:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:960:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:960:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:960:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:967:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:967:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:967:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:974:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:974:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:974:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:981:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:981:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:981:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:988:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:988:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:988:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:995:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:995:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:995:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1002:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1002:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1002:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1009:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1009:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1009:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1016:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1016:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1016:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1023:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1023:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1023:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1030:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1030:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1030:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1037:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1037:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1037:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1044:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1044:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1044:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1051:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1051:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1051:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1058:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1058:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1058:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1065:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1065:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1065:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1072:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1072:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1072:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1079:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1079:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1079:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1086:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1086:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1086:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1093:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1093:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1093:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1100:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1100:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1100:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1107:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1107:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1107:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1114:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1114:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1114:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1121:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1121:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1121:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1128:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1128:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1128:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1135:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1135:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1135:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1142:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1142:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1142:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1149:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1149:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1149:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1156:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1156:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1156:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1163:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1163:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1163:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1170:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1170:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1170:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1177:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1177:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1177:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1184:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1184:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1184:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1191:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1191:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1191:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1198:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1198:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1198:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1205:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1205:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1205:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1212:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1212:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1212:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1219:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1219:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1219:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1226:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1226:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1226:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1233:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1233:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1233:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1240:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1240:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1240:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1247:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1247:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1247:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1254:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1254:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1254:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1261:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1261:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1261:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1268:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1268:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1268:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1275:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1275:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1275:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1282:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1282:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1282:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1289:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1289:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1289:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1296:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1296:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1296:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1303:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1303:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1303:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1310:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1310:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1310:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1317:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1317:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1317:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1324:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1324:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1324:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1331:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1331:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1331:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1338:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1338:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1338:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1345:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1345:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1345:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1352:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1352:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1352:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1359:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1359:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1359:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1366:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1366:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1366:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1373:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1373:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1373:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1380:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1380:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1380:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1387:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1387:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1387:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1394:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1394:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1394:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1401:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1401:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1401:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1408:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1408:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1408:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1415:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1415:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1415:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1422:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1422:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1422:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1429:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1429:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1429:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1436:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1436:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1436:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1443:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1443:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1443:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1450:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1450:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1450:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:1457:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1457:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:1457:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:1465:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1465:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:1465:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:1471:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1471:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:1471:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:1476:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1476:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:1476:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:1484:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1484:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:1484:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:1490:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1490:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:1490:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:1495:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1495:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:1495:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:1503:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1503:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:1503:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:1509:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1509:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:1509:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:1517:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1517:28 error: no declaration found for element 'IfcFaceBound'
c:\esempioifcxml.xml:1517:28 error: attribute 'id' is not declared for element 'IfcFaceBound'
c:\esempioifcxml.xml:1523:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1523:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:1523:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:1531:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1531:28 error: no declaration found for element 'IfcFaceBound'
c:\esempioifcxml.xml:1531:28 error: attribute 'id' is not declared for element 'IfcFaceBound'
c:\esempioifcxml.xml:1537:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1537:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:1537:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:1545:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1545:28 error: no declaration found for element 'IfcFaceBound'
c:\esempioifcxml.xml:1545:28 error: attribute 'id' is not declared for element 'IfcFaceBound'
c:\esempioifcxml.xml:1551:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1551:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:1551:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:1559:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1559:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:1559:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:1567:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1567:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:1567:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:1573:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1573:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:1573:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:1578:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1578:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:1578:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:1586:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1586:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:1586:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:1592:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1592:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:1592:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:1600:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1600:28 error: no declaration found for element 'IfcFaceBound'
c:\esempioifcxml.xml:1600:28 error: attribute 'id' is not declared for element 'IfcFaceBound'
c:\esempioifcxml.xml:1606:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1606:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:1606:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:1612:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1612:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:1612:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:1620:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1620:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:1620:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:1626:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1626:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:1626:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:1631:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1631:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:1631:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:1639:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1639:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:1639:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:1645:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1645:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:1645:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:1650:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1650:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:1650:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:1658:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1658:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:1658:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:1664:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1664:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:1664:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:1669:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1669:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:1669:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:1677:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1677:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:1677:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:1683:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1683:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:1683:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:1688:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1688:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:1688:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:1696:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1696:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:1696:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:1702:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1702:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:1702:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:1707:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1707:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:1707:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:1715:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1715:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:1715:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:1721:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1721:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:1721:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:1726:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1726:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:1726:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:1734:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1734:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:1734:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:1740:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1740:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:1740:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:1745:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1745:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:1745:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:1753:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1753:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:1753:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:1759:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1759:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:1759:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:1764:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1764:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:1764:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:1772:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1772:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:1772:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:1778:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1778:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:1778:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:1783:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1783:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:1783:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:1791:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1791:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:1791:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:1797:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1797:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:1797:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:1802:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1802:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:1802:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:1810:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1810:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:1810:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:1816:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1816:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:1816:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:1821:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1821:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:1821:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:1829:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1829:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:1829:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:1835:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1835:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:1835:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:1840:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1840:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:1840:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:1848:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1848:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:1848:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:1854:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1854:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:1854:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:1859:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1859:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:1859:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:1867:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1867:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:1867:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:1873:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1873:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:1873:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:1878:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1878:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:1878:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:1886:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1886:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:1886:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:1892:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1892:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:1892:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:1897:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1897:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:1897:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:1905:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1905:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:1905:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:1911:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1911:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:1911:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:1916:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1916:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:1916:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:1924:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1924:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:1924:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:1930:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1930:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:1930:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:1935:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1935:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:1935:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:1943:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1943:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:1943:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:1949:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1949:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:1949:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:1957:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1957:28 error: no declaration found for element 'IfcFaceBound'
c:\esempioifcxml.xml:1957:28 error: attribute 'id' is not declared for element 'IfcFaceBound'
c:\esempioifcxml.xml:1963:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1963:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:1963:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:1971:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1971:28 error: no declaration found for element 'IfcFaceBound'
c:\esempioifcxml.xml:1971:28 error: attribute 'id' is not declared for element 'IfcFaceBound'
c:\esempioifcxml.xml:1977:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1977:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:1977:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:1985:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1985:28 error: no declaration found for element 'IfcFaceBound'
c:\esempioifcxml.xml:1985:28 error: attribute 'id' is not declared for element 'IfcFaceBound'
c:\esempioifcxml.xml:1991:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1991:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:1991:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:1999:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:1999:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:1999:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2007:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2007:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2007:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2013:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2013:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2013:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2021:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2021:28 error: no declaration found for element 'IfcFaceBound'
c:\esempioifcxml.xml:2021:28 error: attribute 'id' is not declared for element 'IfcFaceBound'
c:\esempioifcxml.xml:2027:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2027:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:2027:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:2033:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2033:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2033:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2041:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2041:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2041:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2047:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2047:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:2047:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:2052:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2052:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2052:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2060:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2060:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2060:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2066:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2066:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:2066:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:2071:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2071:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2071:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2079:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2079:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2079:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2085:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2085:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:2085:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:2090:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2090:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2090:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2098:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2098:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2098:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2104:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2104:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:2104:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:2109:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2109:30 error: no declaration found for element 'IfcClosedShell'
c:\esempioifcxml.xml:2109:30 error: attribute 'id' is not declared for element 'IfcClosedShell'
c:\esempioifcxml.xml:2141:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2141:30 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:2141:30 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:2146:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2146:28 error: no declaration found for element 'IfcColourRgb'
c:\esempioifcxml.xml:2146:28 error: attribute 'id' is not declared for element 'IfcColourRgb'
c:\esempioifcxml.xml:2151:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2151:40 error: no declaration found for element 'IfcSurfaceStyleRendering'
c:\esempioifcxml.xml:2151:40 error: attribute 'id' is not declared for element 'IfcSurfaceStyleRendering'
c:\esempioifcxml.xml:2164:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2164:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:2164:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:2170:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2170:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:2170:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:2175:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2175:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:2175:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:2181:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2181:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:2181:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:2186:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2186:29 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:2186:29 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:2194:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2194:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2194:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2202:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2202:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2202:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2208:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2208:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:2208:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:2213:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2213:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2213:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2221:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2221:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2221:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2227:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2227:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:2227:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:2232:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2232:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2232:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2240:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2240:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2240:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2246:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2246:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:2246:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:2251:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2251:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2251:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2259:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2259:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2259:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2265:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2265:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:2265:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:2270:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2270:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2270:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2278:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2278:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2278:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2284:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2284:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:2284:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:2289:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2289:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2289:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2297:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2297:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2297:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2303:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2303:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:2303:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:2308:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2308:30 error: no declaration found for element 'IfcClosedShell'
c:\esempioifcxml.xml:2308:30 error: attribute 'id' is not declared for element 'IfcClosedShell'
c:\esempioifcxml.xml:2318:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2318:30 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:2318:30 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:2323:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2323:28 error: no declaration found for element 'IfcColourRgb'
c:\esempioifcxml.xml:2323:28 error: attribute 'id' is not declared for element 'IfcColourRgb'
c:\esempioifcxml.xml:2328:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2328:40 error: no declaration found for element 'IfcSurfaceStyleRendering'
c:\esempioifcxml.xml:2328:40 error: attribute 'id' is not declared for element 'IfcSurfaceStyleRendering'
c:\esempioifcxml.xml:2341:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2341:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:2341:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:2347:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2347:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:2347:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:2352:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2352:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:2352:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:2358:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2358:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:2358:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:2363:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2363:29 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:2363:29 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:2371:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2371:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2371:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2379:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2379:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2379:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2385:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2385:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:2385:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:2390:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2390:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2390:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2398:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2398:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2398:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2404:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2404:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2404:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2412:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2412:28 error: no declaration found for element 'IfcFaceBound'
c:\esempioifcxml.xml:2412:28 error: attribute 'id' is not declared for element 'IfcFaceBound'
c:\esempioifcxml.xml:2418:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2418:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:2418:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:2424:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2424:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2424:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2432:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2432:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2432:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2438:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2438:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:2438:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:2443:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2443:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2443:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2451:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2451:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2451:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2457:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2457:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2457:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2465:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2465:28 error: no declaration found for element 'IfcFaceBound'
c:\esempioifcxml.xml:2465:28 error: attribute 'id' is not declared for element 'IfcFaceBound'
c:\esempioifcxml.xml:2471:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2471:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:2471:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:2477:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2477:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2477:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2485:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2485:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2485:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2491:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2491:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:2491:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:2496:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2496:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2496:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2504:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2504:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2504:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2510:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2510:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:2510:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:2515:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2515:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2515:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2523:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2523:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2523:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2529:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2529:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:2529:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:2534:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2534:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2534:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2542:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2542:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2542:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2548:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2548:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:2548:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:2553:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2553:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2553:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2561:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2561:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2561:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2567:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2567:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:2567:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:2572:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2572:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2572:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2580:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2580:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2580:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2586:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2586:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:2586:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:2591:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2591:30 error: no declaration found for element 'IfcClosedShell'
c:\esempioifcxml.xml:2591:30 error: attribute 'id' is not declared for element 'IfcClosedShell'
c:\esempioifcxml.xml:2605:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2605:30 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:2605:30 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:2610:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2610:28 error: no declaration found for element 'IfcColourRgb'
c:\esempioifcxml.xml:2610:28 error: attribute 'id' is not declared for element 'IfcColourRgb'
c:\esempioifcxml.xml:2615:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2615:40 error: no declaration found for element 'IfcSurfaceStyleRendering'
c:\esempioifcxml.xml:2615:40 error: attribute 'id' is not declared for element 'IfcSurfaceStyleRendering'
c:\esempioifcxml.xml:2628:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2628:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:2628:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:2634:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2634:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:2634:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:2639:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2639:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:2639:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:2645:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2645:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:2645:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:2650:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2650:29 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:2650:29 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:2658:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2658:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2658:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2666:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2666:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2666:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2672:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2672:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:2672:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:2677:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2677:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2677:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2685:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2685:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2685:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2691:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2691:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:2691:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:2696:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2696:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2696:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2704:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2704:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2704:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2710:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2710:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:2710:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:2715:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2715:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2715:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2723:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2723:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2723:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2729:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2729:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:2729:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:2734:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2734:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2734:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2742:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2742:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2742:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2748:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2748:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:2748:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:2753:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2753:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2753:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2761:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2761:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2761:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2767:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2767:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:2767:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:2772:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2772:30 error: no declaration found for element 'IfcClosedShell'
c:\esempioifcxml.xml:2772:30 error: attribute 'id' is not declared for element 'IfcClosedShell'
c:\esempioifcxml.xml:2782:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2782:30 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:2782:30 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:2787:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2787:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:2787:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:2793:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2793:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:2793:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:2798:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2798:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:2798:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:2804:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2804:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:2804:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:2809:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2809:29 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:2809:29 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:2817:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2817:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2817:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2825:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2825:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2825:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2831:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2831:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:2831:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:2836:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2836:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2836:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2844:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2844:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2844:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2850:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2850:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2850:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2858:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2858:28 error: no declaration found for element 'IfcFaceBound'
c:\esempioifcxml.xml:2858:28 error: attribute 'id' is not declared for element 'IfcFaceBound'
c:\esempioifcxml.xml:2864:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2864:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:2864:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:2870:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2870:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2870:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2878:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2878:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2878:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2884:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2884:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:2884:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:2889:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2889:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2889:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2897:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2897:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2897:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2903:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2903:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2903:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2911:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2911:28 error: no declaration found for element 'IfcFaceBound'
c:\esempioifcxml.xml:2911:28 error: attribute 'id' is not declared for element 'IfcFaceBound'
c:\esempioifcxml.xml:2917:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2917:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:2917:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:2923:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2923:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2923:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2931:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2931:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2931:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2937:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2937:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:2937:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:2942:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2942:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2942:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2950:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2950:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2950:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2956:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2956:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:2956:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:2961:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2961:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2961:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2969:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2969:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2969:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2975:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2975:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:2975:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:2980:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2980:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2980:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2988:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2988:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2988:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:2994:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2994:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:2994:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:2999:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:2999:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:2999:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:3007:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3007:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:3007:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:3013:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3013:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:3013:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:3018:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3018:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:3018:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:3026:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3026:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:3026:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:3032:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3032:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:3032:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:3037:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3037:30 error: no declaration found for element 'IfcClosedShell'
c:\esempioifcxml.xml:3037:30 error: attribute 'id' is not declared for element 'IfcClosedShell'
c:\esempioifcxml.xml:3051:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3051:30 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:3051:30 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:3056:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3056:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:3056:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:3062:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3062:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:3062:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:3067:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3067:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:3067:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:3073:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3073:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:3073:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:3078:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3078:29 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:3078:29 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:3086:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3086:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:3086:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:3094:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3094:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:3094:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:3100:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3100:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:3100:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:3105:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3105:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:3105:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:3113:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3113:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:3113:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:3119:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3119:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:3119:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:3124:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3124:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:3124:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:3132:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3132:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:3132:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:3138:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3138:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:3138:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:3143:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3143:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:3143:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:3151:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3151:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:3151:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:3157:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3157:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:3157:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:3162:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3162:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:3162:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:3170:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3170:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:3170:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:3176:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3176:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:3176:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:3181:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3181:27 error: no declaration found for element 'IfcPolyLoop'
c:\esempioifcxml.xml:3181:27 error: attribute 'id' is not declared for element 'IfcPolyLoop'
c:\esempioifcxml.xml:3189:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3189:33 error: no declaration found for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:3189:33 error: attribute 'id' is not declared for element 'IfcFaceOuterBound'
c:\esempioifcxml.xml:3195:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3195:23 error: no declaration found for element 'IfcFace'
c:\esempioifcxml.xml:3195:23 error: attribute 'id' is not declared for element 'IfcFace'
c:\esempioifcxml.xml:3200:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3200:30 error: no declaration found for element 'IfcClosedShell'
c:\esempioifcxml.xml:3200:30 error: attribute 'id' is not declared for element 'IfcClosedShell'
c:\esempioifcxml.xml:3210:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3210:30 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:3210:30 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:3215:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3215:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:3215:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:3221:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3221:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:3221:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:3226:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3226:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:3226:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:3232:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3232:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:3232:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:3237:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3237:29 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:3237:29 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:3245:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3245:38 error: no declaration found for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:3245:38 error: attribute 'id' is not declared for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:3260:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3260:41 error: no declaration found for element 'IfcProductDefinitionShape'
c:\esempioifcxml.xml:3260:41 error: attribute 'id' is not declared for element 'IfcProductDefinitionShape'
c:\esempioifcxml.xml:3265:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3265:25 error: no declaration found for element 'IfcWindow'
c:\esempioifcxml.xml:3265:25 error: attribute 'id' is not declared for element 'IfcWindow'
c:\esempioifcxml.xml:3280:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3280:34 error: no declaration found for element 'IfcRelFillsElement'
c:\esempioifcxml.xml:3280:34 error: attribute 'id' is not declared for element 'IfcRelFillsElement'
c:\esempioifcxml.xml:3292:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3292:41 error: no declaration found for element 'IfcWindowLiningProperties'
c:\esempioifcxml.xml:3292:41 error: attribute 'id' is not declared for element 'IfcWindowLiningProperties'
c:\esempioifcxml.xml:3300:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3300:40 error: no declaration found for element 'IfcWindowPanelProperties'
c:\esempioifcxml.xml:3300:40 error: attribute 'id' is not declared for element 'IfcWindowPanelProperties'
c:\esempioifcxml.xml:3308:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3308:40 error: no declaration found for element 'IfcWindowPanelProperties'
c:\esempioifcxml.xml:3308:40 error: attribute 'id' is not declared for element 'IfcWindowPanelProperties'
c:\esempioifcxml.xml:3316:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3316:40 error: no declaration found for element 'IfcWindowPanelProperties'
c:\esempioifcxml.xml:3316:40 error: attribute 'id' is not declared for element 'IfcWindowPanelProperties'
c:\esempioifcxml.xml:3324:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3324:30 error: no declaration found for element 'IfcWindowStyle'
c:\esempioifcxml.xml:3324:30 error: attribute 'id' is not declared for element 'IfcWindowStyle'
c:\esempioifcxml.xml:3341:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3341:35 error: no declaration found for element 'IfcRelDefinesByType'
c:\esempioifcxml.xml:3341:35 error: attribute 'id' is not declared for element 'IfcRelDefinesByType'
c:\esempioifcxml.xml:3354:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3354:46 error: no declaration found for element 'IfcPresentationLayerAssignment'
c:\esempioifcxml.xml:3354:46 error: attribute 'id' is not declared for element 'IfcPresentationLayerAssignment'
c:\esempioifcxml.xml:3392:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3392:38 error: no declaration found for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:3392:38 error: attribute 'id' is not declared for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:3407:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3407:38 error: no declaration found for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:3407:38 error: attribute 'id' is not declared for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:3432:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3432:38 error: no declaration found for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:3432:38 error: attribute 'id' is not declared for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:3496:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3496:38 error: no declaration found for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:3496:38 error: attribute 'id' is not declared for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:3529:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3529:38 error: no declaration found for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:3529:38 error: attribute 'id' is not declared for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:3554:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3554:38 error: no declaration found for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:3554:38 error: attribute 'id' is not declared for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:3618:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3618:38 error: no declaration found for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:3618:38 error: attribute 'id' is not declared for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:3643:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3643:38 error: no declaration found for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:3643:38 error: attribute 'id' is not declared for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:3707:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3707:38 error: no declaration found for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:3707:38 error: attribute 'id' is not declared for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:3732:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3732:38 error: no declaration found for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:3732:38 error: attribute 'id' is not declared for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:3796:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3796:38 error: no declaration found for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:3796:38 error: attribute 'id' is not declared for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:3821:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3821:38 error: no declaration found for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:3821:38 error: attribute 'id' is not declared for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:3885:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3885:38 error: no declaration found for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:3885:38 error: attribute 'id' is not declared for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:3900:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3900:39 error: no declaration found for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:3900:39 error: attribute 'id' is not declared for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:3915:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3915:38 error: no declaration found for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:3915:38 error: attribute 'id' is not declared for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:3940:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:3940:38 error: no declaration found for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:3940:38 error: attribute 'id' is not declared for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:4004:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:4004:39 error: no declaration found for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:4004:39 error: attribute 'id' is not declared for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:4019:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:4019:39 error: no declaration found for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:4019:39 error: attribute 'id' is not declared for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:4034:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:4034:39 error: no declaration found for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:4034:39 error: attribute 'id' is not declared for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:4059:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:4059:39 error: no declaration found for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:4059:39 error: attribute 'id' is not declared for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:4123:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:4123:39 error: no declaration found for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:4123:39 error: attribute 'id' is not declared for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:4144:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:4144:39 error: no declaration found for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:4144:39 error: attribute 'id' is not declared for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:4169:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:4169:39 error: no declaration found for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:4169:39 error: attribute 'id' is not declared for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:4233:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:4233:39 error: no declaration found for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:4233:39 error: attribute 'id' is not declared for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:4258:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:4258:39 error: no declaration found for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:4258:39 error: attribute 'id' is not declared for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:4322:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:4322:39 error: no declaration found for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:4322:39 error: attribute 'id' is not declared for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:4347:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:4347:39 error: no declaration found for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:4347:39 error: attribute 'id' is not declared for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:4411:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:4411:39 error: no declaration found for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:4411:39 error: attribute 'id' is not declared for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:4429:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:4429:39 error: no declaration found for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:4429:39 error: attribute 'id' is not declared for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:4454:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:4454:39 error: no declaration found for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:4454:39 error: attribute 'id' is not declared for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:4518:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:4518:30 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:4518:30 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:5106:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:5106:30 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:5106:30 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:5216:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:5216:30 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:5216:30 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:5420:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:5420:30 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:5420:30 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:5530:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:5530:30 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:5530:30 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:5734:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:5734:30 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:5734:30 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:5844:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:5844:30 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:5844:30 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:6294:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:6294:30 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:6294:30 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:6968:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:6968:30 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:6968:30 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:7078:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:7078:30 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:7078:30 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:7188:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:7188:30 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:7188:30 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:7298:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:7298:30 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:7298:30 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:7408:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:7408:30 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:7408:30 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:7518:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:7518:30 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:7518:30 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:7628:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:7628:30 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:7628:30 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:7738:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:7738:30 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:7738:30 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:7848:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:7848:30 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:7848:30 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:7958:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:7958:30 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:7958:30 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:8068:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:8068:30 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:8068:30 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:8178:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:8178:30 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:8178:30 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:8288:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:8288:30 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:8288:30 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:8398:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:8398:30 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:8398:30 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:8508:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:8508:30 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:8508:30 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:8618:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:8618:30 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:8618:30 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:8728:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:8728:30 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:8728:30 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:8838:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:8838:30 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:8838:30 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:8948:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:8948:30 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:8948:30 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:9152:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:9152:30 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:9152:30 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:9262:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:9262:30 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:9262:30 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:9466:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:9466:30 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:9466:30 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:9576:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:9576:30 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:9576:30 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:10164:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:10164:30 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:10164:30 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:10274:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:10274:30 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:10274:30 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:10478:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:10478:30 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:10478:30 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:10588:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:10588:30 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:10588:30 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:10792:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:10792:30 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:10792:30 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:10902:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:10902:30 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:10902:30 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:11490:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:11490:30 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:11490:30 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:11600:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:11600:30 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:11600:30 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:11804:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:11804:31 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:11804:31 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:11914:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:11914:31 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:11914:31 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:12118:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:12118:31 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:12118:31 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:12228:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:12228:31 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:12228:31 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:12816:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:12816:31 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:12816:31 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:12926:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:12926:31 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:12926:31 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:13130:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:13130:31 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:13130:31 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:13240:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:13240:31 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:13240:31 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:13444:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:13444:31 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:13444:31 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:13554:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:13554:31 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:13554:31 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:14142:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:14142:31 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:14142:31 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:14252:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:14252:31 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:14252:31 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:14456:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:14456:31 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:14456:31 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:14566:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:14566:31 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:14566:31 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:14770:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:14770:31 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:14770:31 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:14880:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:14880:31 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:14880:31 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:14990:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:14990:31 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:14990:31 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:15100:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:15100:31 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:15100:31 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:15210:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:15210:31 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:15210:31 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:15320:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:15320:31 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:15320:31 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:15430:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:15430:31 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:15430:31 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:15540:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:15540:31 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:15540:31 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:15650:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:15650:31 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:15650:31 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:15760:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:15760:31 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:15760:31 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:15870:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:15870:31 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:15870:31 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:16056:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:16056:31 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:16056:31 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:16260:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:16260:31 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:16260:31 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:16370:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:16370:31 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:16370:31 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:16480:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:16480:31 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:16480:31 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:16590:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:16590:31 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:16590:31 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:16700:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:16700:31 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:16700:31 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:16810:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:16810:31 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:16810:31 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:16920:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:16920:31 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:16920:31 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:17030:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:17030:31 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:17030:31 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:17292:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:17292:31 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:17292:31 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:17496:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:17496:31 error: no declaration found for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:17496:31 error: attribute 'id' is not declared for element 'IfcFacetedBrep'
c:\esempioifcxml.xml:17606:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:17606:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17606:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17613:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:17613:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17613:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17620:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:17620:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17620:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17627:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:17627:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17627:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17634:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:17634:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17634:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17641:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:17641:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17641:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17648:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:17648:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17648:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17655:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:17655:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17655:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17662:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:17662:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17662:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17669:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:17669:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17669:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17676:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:17676:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17676:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17683:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:17683:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17683:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17690:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:17690:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17690:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17697:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:17697:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17697:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17704:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:17704:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17704:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17711:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:17711:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17711:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17718:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:17718:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17718:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17725:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:17725:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17725:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17732:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:17732:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17732:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17739:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:17739:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17739:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17746:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:17746:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17746:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17753:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:17753:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17753:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17760:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:17760:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17760:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17767:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:17767:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17767:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17774:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:17774:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17774:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17781:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:17781:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17781:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17788:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:17788:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17788:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17795:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:17795:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17795:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17802:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:17802:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17802:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17809:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:17809:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17809:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17816:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:17816:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17816:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17823:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:17823:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17823:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17830:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:17830:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17830:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17837:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:17837:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17837:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17844:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:17844:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17844:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17851:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:17851:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17851:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17858:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:17858:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17858:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17865:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:17865:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17865:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17872:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:17872:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17872:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17879:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:17879:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17879:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17886:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:17886:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17886:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17893:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:17893:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17893:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17900:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:17900:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17900:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17907:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:17907:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17907:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17914:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:17914:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17914:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17921:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:17921:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17921:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17928:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:17928:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17928:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17935:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:17935:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17935:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17942:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:17942:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17942:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17949:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:17949:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17949:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17956:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:17956:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17956:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17963:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:17963:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17963:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17970:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:17970:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17970:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17977:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:17977:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17977:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17984:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:17984:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17984:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17991:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:17991:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17991:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17998:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:17998:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:17998:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18005:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18005:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18005:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18012:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18012:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18012:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18019:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18019:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18019:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18026:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18026:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18026:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18033:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18033:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18033:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18040:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18040:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18040:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18047:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18047:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18047:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18054:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18054:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18054:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18061:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18061:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18061:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18068:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18068:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18068:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18075:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18075:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18075:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18082:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18082:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18082:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18089:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18089:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18089:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18096:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18096:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18096:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18103:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18103:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18103:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18110:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18110:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18110:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18117:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18117:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18117:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18124:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18124:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18124:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18131:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18131:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18131:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18138:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18138:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18138:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18145:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18145:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18145:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18152:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18152:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18152:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18159:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18159:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18159:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18166:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18166:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18166:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18173:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18173:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18173:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18180:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18180:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18180:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18187:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18187:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18187:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18194:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18194:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18194:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18201:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18201:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18201:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18208:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18208:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18208:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18215:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18215:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18215:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18222:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18222:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18222:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18229:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18229:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18229:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18236:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18236:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18236:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18243:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18243:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18243:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18250:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18250:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18250:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18257:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18257:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18257:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18264:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18264:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18264:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18271:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18271:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18271:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18278:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18278:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18278:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18285:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18285:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18285:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18292:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18292:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18292:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18299:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18299:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18299:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18306:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18306:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18306:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18313:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18313:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18313:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18320:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18320:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18320:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18327:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18327:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18327:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18334:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18334:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18334:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18341:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18341:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18341:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18348:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18348:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18348:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18355:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18355:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18355:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18362:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18362:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18362:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18369:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18369:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18369:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18376:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18376:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18376:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18383:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18383:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18383:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18390:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18390:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18390:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18397:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18397:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18397:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18404:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18404:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18404:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18411:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18411:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18411:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18418:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18418:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18418:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18425:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18425:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18425:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18432:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18432:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18432:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18439:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18439:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18439:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18446:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18446:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18446:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18453:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18453:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18453:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18460:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18460:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18460:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18467:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18467:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18467:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18474:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18474:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18474:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18481:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18481:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18481:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18488:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18488:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18488:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18495:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18495:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18495:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18502:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18502:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18502:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18509:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18509:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18509:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18516:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18516:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18516:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18523:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18523:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18523:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18530:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18530:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18530:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18537:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18537:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18537:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18544:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18544:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18544:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18551:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18551:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18551:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18558:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18558:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18558:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18565:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18565:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18565:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18572:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18572:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18572:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18579:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18579:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18579:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18586:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18586:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18586:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18593:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18593:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18593:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18600:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18600:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18600:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18607:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18607:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18607:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18614:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18614:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18614:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18621:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18621:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18621:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18628:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18628:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18628:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18635:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18635:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18635:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18642:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18642:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18642:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18649:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18649:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18649:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18656:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18656:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18656:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18663:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18663:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18663:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18670:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18670:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18670:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18677:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18677:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18677:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18684:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18684:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18684:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18691:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18691:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18691:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18698:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18698:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18698:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18705:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18705:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18705:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18712:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18712:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18712:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18719:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18719:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18719:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18726:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18726:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18726:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18733:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18733:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18733:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18740:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18740:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18740:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18747:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18747:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18747:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18754:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18754:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18754:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18761:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18761:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18761:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18768:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18768:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18768:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18775:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18775:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18775:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18782:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18782:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18782:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18789:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18789:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18789:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18796:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18796:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18796:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18803:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18803:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18803:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18810:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18810:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18810:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18817:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18817:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18817:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18824:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18824:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18824:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18831:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18831:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18831:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18838:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18838:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18838:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18845:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18845:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18845:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18852:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18852:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18852:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18859:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18859:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18859:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18866:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18866:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18866:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18873:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18873:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18873:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18880:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18880:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18880:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18887:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18887:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18887:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18894:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18894:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18894:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18901:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18901:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18901:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18908:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18908:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18908:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18915:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18915:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18915:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18922:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18922:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18922:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18929:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18929:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18929:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18936:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18936:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18936:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18943:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18943:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18943:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18950:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18950:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18950:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18957:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18957:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18957:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18964:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18964:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18964:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18971:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18971:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18971:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18978:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18978:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18978:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18985:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18985:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18985:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18992:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18992:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18992:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18999:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:18999:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:18999:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19006:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19006:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19006:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19013:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19013:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19013:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19020:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19020:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19020:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19027:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19027:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19027:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19034:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19034:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19034:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19041:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19041:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19041:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19048:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19048:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19048:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19055:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19055:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19055:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19062:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19062:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19062:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19069:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19069:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19069:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19076:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19076:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19076:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19083:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19083:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19083:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19090:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19090:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19090:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19097:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19097:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19097:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19104:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19104:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19104:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19111:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19111:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19111:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19118:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19118:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19118:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19125:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19125:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19125:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19132:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19132:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19132:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19139:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19139:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19139:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19146:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19146:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19146:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19153:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19153:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19153:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19160:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19160:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19160:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19167:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19167:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19167:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19174:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19174:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19174:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19181:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19181:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19181:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19188:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19188:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19188:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19195:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19195:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19195:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19202:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19202:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19202:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19209:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19209:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19209:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19216:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19216:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19216:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19223:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19223:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19223:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19230:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19230:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19230:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19237:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19237:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19237:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19244:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19244:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19244:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19251:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19251:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19251:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19258:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19258:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19258:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19265:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19265:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19265:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19272:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19272:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19272:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19279:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19279:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19279:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19286:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19286:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19286:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19293:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19293:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19293:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19300:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19300:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19300:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19307:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19307:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19307:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19314:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19314:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19314:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19321:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19321:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19321:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19328:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19328:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19328:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19335:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19335:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19335:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19342:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19342:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19342:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19349:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19349:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19349:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19356:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19356:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19356:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19363:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19363:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19363:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19370:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19370:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19370:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19377:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19377:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19377:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19384:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19384:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19384:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19391:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19391:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19391:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19398:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19398:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19398:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19405:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19405:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19405:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19412:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19412:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19412:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19419:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19419:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19419:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19426:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19426:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19426:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19433:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19433:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19433:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19440:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19440:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19440:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19447:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19447:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19447:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19454:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19454:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19454:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19461:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19461:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19461:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19468:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19468:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19468:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19475:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19475:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19475:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19482:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19482:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19482:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19489:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19489:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19489:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19496:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19496:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19496:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19503:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19503:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19503:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19510:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19510:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19510:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19517:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19517:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19517:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19524:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19524:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19524:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19531:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19531:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19531:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19538:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19538:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19538:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19545:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19545:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19545:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19552:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19552:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19552:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19559:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19559:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19559:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19566:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19566:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19566:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19573:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19573:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19573:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19580:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19580:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19580:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19587:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19587:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19587:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19594:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19594:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19594:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19601:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19601:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19601:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19608:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19608:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19608:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19615:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19615:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19615:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19622:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19622:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19622:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19629:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19629:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19629:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19636:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19636:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19636:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19643:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19643:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19643:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19650:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19650:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19650:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19657:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19657:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19657:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19664:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19664:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19664:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19671:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19671:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19671:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19678:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19678:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19678:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19685:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19685:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19685:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19692:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19692:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19692:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19699:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19699:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19699:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19706:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19706:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19706:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19713:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19713:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19713:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19720:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19720:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19720:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19727:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19727:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19727:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19734:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19734:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19734:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19741:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19741:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19741:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19748:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19748:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19748:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19755:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19755:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19755:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19762:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19762:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19762:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19769:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19769:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19769:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19776:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19776:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19776:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19783:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19783:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19783:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19790:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19790:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19790:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19797:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19797:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19797:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19804:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19804:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19804:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19811:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19811:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19811:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19818:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19818:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19818:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19825:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19825:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19825:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19832:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19832:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19832:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19839:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19839:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19839:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19846:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19846:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19846:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19853:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19853:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19853:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19860:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19860:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19860:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19867:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19867:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19867:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19874:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19874:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19874:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19881:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19881:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19881:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19888:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19888:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19888:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19895:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19895:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19895:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19902:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19902:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19902:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19909:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19909:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19909:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19916:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19916:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19916:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19923:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19923:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19923:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19930:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19930:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19930:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19937:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19937:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19937:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19944:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19944:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19944:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19951:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19951:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19951:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19958:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19958:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19958:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19965:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19965:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19965:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19972:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19972:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19972:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19979:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19979:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19979:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19986:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19986:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19986:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19993:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:19993:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:19993:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20000:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20000:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20000:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20007:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20007:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20007:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20014:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20014:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20014:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20021:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20021:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20021:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20028:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20028:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20028:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20035:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20035:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20035:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20042:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20042:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20042:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20049:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20049:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20049:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20056:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20056:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20056:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20063:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20063:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20063:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20070:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20070:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20070:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20077:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20077:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20077:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20084:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20084:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20084:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20091:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20091:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20091:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20098:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20098:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20098:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20105:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20105:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20105:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20112:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20112:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20112:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20119:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20119:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20119:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20126:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20126:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20126:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20133:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20133:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20133:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20140:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20140:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20140:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20147:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20147:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20147:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20154:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20154:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20154:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20161:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20161:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20161:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20168:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20168:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20168:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20175:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20175:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20175:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20182:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20182:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20182:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20189:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20189:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20189:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20196:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20196:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20196:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20203:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20203:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20203:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20210:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20210:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20210:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20217:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20217:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20217:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20224:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20224:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20224:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20231:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20231:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20231:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20238:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20238:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20238:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20245:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20245:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20245:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20252:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20252:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20252:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20259:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20259:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20259:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20266:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20266:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20266:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20273:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20273:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20273:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20280:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20280:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20280:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20287:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20287:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20287:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20294:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20294:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20294:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20301:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20301:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20301:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20308:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20308:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20308:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20315:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20315:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20315:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20322:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20322:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20322:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20329:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20329:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20329:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20336:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20336:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20336:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20343:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20343:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20343:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20350:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20350:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20350:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20357:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20357:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20357:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20364:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20364:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20364:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20371:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20371:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20371:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20378:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20378:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20378:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20385:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20385:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20385:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20392:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20392:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20392:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20399:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20399:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20399:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20406:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20406:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20406:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20413:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20413:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20413:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20420:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20420:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20420:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20427:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20427:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20427:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20434:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20434:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20434:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20441:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20441:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20441:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20448:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20448:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20448:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20455:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20455:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20455:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20462:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20462:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20462:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20469:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20469:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20469:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20476:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20476:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20476:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20483:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20483:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20483:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20490:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20490:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20490:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20497:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20497:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20497:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20504:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20504:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20504:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20511:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20511:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20511:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20518:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20518:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20518:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20525:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20525:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20525:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20532:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20532:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20532:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20539:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20539:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20539:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20546:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20546:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20546:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20553:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20553:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20553:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20560:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20560:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20560:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20567:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20567:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20567:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20574:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20574:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20574:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20581:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20581:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20581:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20588:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20588:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20588:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20595:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20595:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20595:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20602:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20602:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20602:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20609:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20609:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20609:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20616:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20616:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20616:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20623:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20623:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20623:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20630:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20630:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20630:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20637:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20637:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20637:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20644:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20644:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20644:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20651:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20651:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20651:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20658:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20658:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20658:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20665:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20665:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20665:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20672:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20672:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20672:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20679:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20679:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20679:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20686:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20686:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20686:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20693:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20693:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20693:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20700:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20700:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20700:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20707:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20707:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20707:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20714:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20714:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20714:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20721:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20721:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20721:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20728:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20728:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20728:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20735:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20735:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20735:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20742:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20742:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20742:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20749:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20749:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20749:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20756:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20756:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20756:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20763:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20763:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20763:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20770:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20770:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20770:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20777:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20777:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20777:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20784:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20784:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20784:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20791:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20791:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20791:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20798:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20798:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20798:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20805:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20805:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20805:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20812:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20812:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20812:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20819:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20819:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20819:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20826:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20826:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20826:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20833:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20833:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20833:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20840:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20840:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20840:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20847:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20847:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20847:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20854:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20854:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20854:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20861:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20861:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20861:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20868:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20868:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20868:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20875:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20875:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20875:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20882:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20882:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20882:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20889:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20889:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20889:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20896:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20896:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20896:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20903:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20903:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20903:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20910:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20910:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20910:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20917:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20917:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20917:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20924:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20924:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20924:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20931:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20931:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20931:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20938:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20938:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20938:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20945:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20945:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20945:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20952:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20952:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20952:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20959:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20959:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20959:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20966:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20966:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20966:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20973:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20973:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20973:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20980:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20980:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20980:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20987:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20987:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20987:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20994:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:20994:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:20994:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21001:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21001:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21001:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21008:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21008:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21008:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21015:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21015:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21015:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21022:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21022:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21022:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21029:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21029:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21029:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21036:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21036:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21036:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21043:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21043:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21043:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21050:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21050:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21050:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21057:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21057:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21057:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21064:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21064:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21064:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21071:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21071:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21071:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21078:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21078:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21078:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21085:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21085:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21085:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21092:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21092:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21092:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21099:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21099:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21099:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21106:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21106:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21106:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21113:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21113:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21113:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21120:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21120:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21120:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21127:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21127:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21127:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21134:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21134:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21134:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21141:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21141:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21141:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21148:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21148:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21148:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21155:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21155:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21155:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21162:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21162:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21162:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21169:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21169:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21169:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21176:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21176:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21176:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21183:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21183:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21183:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21190:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21190:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21190:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21197:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21197:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21197:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21204:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21204:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21204:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21211:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21211:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21211:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21218:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21218:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21218:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21225:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21225:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21225:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21232:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21232:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21232:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21239:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21239:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21239:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21246:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21246:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21246:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21253:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21253:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21253:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21260:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21260:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21260:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21267:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21267:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21267:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21274:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21274:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21274:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21281:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21281:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21281:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21288:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21288:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21288:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21295:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21295:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21295:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21302:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21302:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21302:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21309:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21309:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21309:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21316:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21316:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21316:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21323:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21323:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21323:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21330:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21330:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21330:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21337:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21337:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21337:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21344:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21344:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21344:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21351:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21351:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21351:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21358:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21358:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21358:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21365:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21365:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21365:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21372:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21372:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21372:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21379:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21379:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21379:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21386:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21386:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21386:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21393:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21393:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21393:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21400:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21400:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21400:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21407:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21407:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21407:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21414:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21414:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21414:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21421:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21421:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21421:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21428:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21428:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21428:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21435:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21435:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21435:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21442:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21442:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21442:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21449:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21449:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21449:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21456:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21456:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21456:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21463:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21463:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21463:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21470:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21470:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21470:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21477:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21477:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21477:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21484:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21484:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21484:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21491:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21491:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21491:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21498:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21498:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21498:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21505:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21505:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21505:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21512:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21512:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21512:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21519:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21519:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21519:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21526:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21526:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21526:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21533:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21533:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21533:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21540:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21540:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21540:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21547:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21547:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21547:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21554:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21554:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21554:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21561:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21561:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21561:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21568:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21568:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21568:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21575:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21575:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21575:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21582:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21582:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21582:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21589:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21589:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21589:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21596:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21596:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21596:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21603:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21603:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21603:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21610:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21610:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21610:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21617:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21617:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21617:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21624:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21624:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21624:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21631:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21631:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21631:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21638:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21638:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21638:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21645:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21645:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21645:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21652:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21652:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21652:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21659:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21659:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21659:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21666:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21666:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21666:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21673:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21673:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21673:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21680:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21680:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21680:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21687:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21687:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21687:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21694:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21694:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21694:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21701:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21701:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21701:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21708:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21708:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21708:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21715:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21715:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21715:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21722:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21722:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21722:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21729:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21729:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21729:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21736:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21736:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21736:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21743:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21743:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21743:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21750:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21750:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21750:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21757:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21757:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21757:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21764:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21764:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21764:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21771:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21771:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21771:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21778:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21778:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21778:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21785:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21785:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21785:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21792:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21792:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21792:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21799:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21799:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21799:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21806:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21806:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21806:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21813:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21813:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21813:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21820:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21820:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21820:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21827:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21827:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21827:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21834:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21834:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21834:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21841:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21841:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21841:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21848:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21848:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21848:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21855:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21855:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21855:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21862:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21862:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21862:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21869:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21869:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21869:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21876:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21876:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21876:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21883:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21883:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21883:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21890:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21890:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21890:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21897:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21897:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21897:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21904:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21904:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21904:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21911:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21911:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21911:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21918:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21918:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21918:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21925:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21925:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21925:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21932:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21932:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21932:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21939:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21939:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21939:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21946:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21946:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21946:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21953:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21953:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21953:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21960:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21960:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21960:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21967:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21967:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21967:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21974:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21974:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21974:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21981:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21981:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21981:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21988:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21988:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21988:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21995:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:21995:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:21995:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22002:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22002:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22002:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22009:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22009:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22009:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22016:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22016:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22016:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22023:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22023:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22023:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22030:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22030:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22030:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22037:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22037:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22037:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22044:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22044:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22044:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22051:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22051:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22051:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22058:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22058:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22058:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22065:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22065:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22065:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22072:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22072:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22072:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22079:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22079:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22079:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22086:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22086:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22086:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22093:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22093:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22093:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22100:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22100:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22100:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22107:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22107:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22107:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22114:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22114:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22114:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22121:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22121:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22121:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22128:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22128:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22128:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22135:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22135:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22135:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22142:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22142:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22142:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22149:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22149:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22149:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22156:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22156:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22156:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22163:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22163:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22163:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22170:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22170:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22170:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22177:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22177:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22177:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22184:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22184:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22184:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22191:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22191:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22191:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22198:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22198:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22198:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22205:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22205:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22205:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22212:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22212:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22212:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22219:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22219:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22219:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22226:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22226:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22226:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22233:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22233:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22233:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22240:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22240:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22240:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22247:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22247:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22247:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22254:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22254:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22254:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22261:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22261:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22261:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22268:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22268:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22268:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22275:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22275:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22275:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22282:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22282:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22282:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22289:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22289:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22289:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22296:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22296:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22296:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22303:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22303:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22303:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22310:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22310:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22310:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22317:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22317:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22317:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22324:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22324:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22324:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22331:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22331:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22331:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22338:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22338:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22338:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22345:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22345:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22345:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22352:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22352:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22352:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22359:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22359:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22359:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22366:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22366:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22366:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22373:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22373:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22373:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22380:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22380:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22380:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22387:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22387:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22387:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22394:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22394:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22394:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22401:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22401:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22401:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22408:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22408:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22408:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22415:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22415:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22415:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22422:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22422:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22422:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22429:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22429:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22429:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22436:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22436:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22436:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22443:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22443:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22443:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22450:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22450:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22450:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22457:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22457:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22457:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22464:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22464:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22464:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22471:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22471:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22471:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22478:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22478:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22478:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22485:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22485:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22485:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22492:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22492:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22492:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22499:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22499:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22499:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22506:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22506:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22506:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22513:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22513:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22513:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22520:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22520:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22520:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22527:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22527:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22527:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22534:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22534:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22534:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22541:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22541:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22541:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22548:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22548:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22548:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22555:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22555:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22555:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22562:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22562:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22562:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22569:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22569:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22569:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22576:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22576:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22576:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22583:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22583:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22583:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22590:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22590:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22590:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22597:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22597:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22597:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22604:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22604:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22604:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22611:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22611:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22611:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22618:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22618:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22618:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22625:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22625:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22625:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22632:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22632:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22632:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22639:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22639:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22639:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22646:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22646:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22646:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22653:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22653:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22653:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22660:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22660:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22660:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22667:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22667:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22667:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22674:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22674:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22674:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22681:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22681:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22681:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22688:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22688:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22688:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22695:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22695:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22695:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22702:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22702:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22702:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22709:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22709:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22709:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22716:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22716:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22716:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22723:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22723:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22723:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22730:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22730:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22730:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22737:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22737:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22737:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22744:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22744:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22744:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22751:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22751:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22751:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22758:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22758:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22758:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22765:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22765:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22765:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22772:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22772:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22772:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22779:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22779:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22779:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22786:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22786:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22786:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22793:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22793:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22793:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22800:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22800:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22800:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22807:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22807:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22807:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22814:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22814:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22814:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22821:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22821:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22821:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22828:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22828:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22828:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22835:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22835:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22835:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22842:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22842:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22842:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22849:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22849:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22849:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22856:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22856:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22856:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22863:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22863:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22863:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22870:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22870:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22870:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22877:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22877:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22877:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22884:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22884:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22884:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22891:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22891:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22891:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22898:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22898:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22898:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22905:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22905:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22905:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22912:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22912:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22912:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22919:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22919:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22919:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22926:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22926:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22926:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22933:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22933:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22933:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22940:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22940:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22940:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22947:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22947:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22947:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22954:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22954:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22954:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22961:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22961:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22961:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22968:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22968:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22968:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22975:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22975:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22975:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22982:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22982:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22982:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22989:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22989:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22989:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22996:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:22996:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:22996:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23003:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23003:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23003:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23010:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23010:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23010:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23017:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23017:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23017:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23024:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23024:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23024:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23031:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23031:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23031:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23038:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23038:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23038:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23045:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23045:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23045:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23052:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23052:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23052:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23059:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23059:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23059:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23066:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23066:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23066:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23073:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23073:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23073:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23080:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23080:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23080:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23087:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23087:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23087:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23094:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23094:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23094:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23101:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23101:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23101:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23108:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23108:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23108:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23115:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23115:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23115:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23122:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23122:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23122:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23129:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23129:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23129:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23136:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23136:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23136:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23143:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23143:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23143:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23150:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23150:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23150:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23157:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23157:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23157:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23164:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23164:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23164:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23171:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23171:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23171:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23178:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23178:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23178:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23185:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23185:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23185:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23192:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23192:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23192:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23199:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23199:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23199:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23206:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23206:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23206:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23213:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23213:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23213:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23220:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23220:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23220:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23227:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23227:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23227:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23234:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23234:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23234:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23241:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23241:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23241:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23248:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23248:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23248:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23255:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23255:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23255:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23262:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23262:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23262:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23269:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23269:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23269:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23276:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23276:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23276:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23283:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23283:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23283:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23290:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23290:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23290:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23297:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23297:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23297:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23304:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23304:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23304:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23311:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23311:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23311:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23318:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23318:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23318:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23325:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23325:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23325:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23332:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23332:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23332:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23339:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23339:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23339:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23346:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23346:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23346:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23353:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23353:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23353:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23360:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23360:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23360:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23367:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23367:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23367:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23374:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23374:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23374:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23381:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23381:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23381:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23388:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23388:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23388:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23395:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23395:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23395:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23402:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23402:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23402:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23409:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23409:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23409:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23416:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23416:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23416:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23423:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23423:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23423:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23430:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23430:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23430:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23437:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23437:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23437:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23444:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23444:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23444:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23451:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23451:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23451:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23458:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23458:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23458:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23465:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23465:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23465:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23472:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23472:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23472:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23479:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23479:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23479:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23486:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23486:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23486:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23493:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23493:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23493:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23500:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23500:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23500:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23507:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23507:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23507:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23514:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23514:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23514:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23521:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23521:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23521:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23528:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23528:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23528:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23535:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23535:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23535:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23542:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23542:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23542:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23549:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23549:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23549:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23556:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23556:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23556:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23563:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23563:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23563:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23570:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23570:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23570:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23577:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23577:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23577:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23584:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23584:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23584:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23591:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23591:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23591:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23598:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23598:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23598:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23605:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23605:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23605:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23612:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23612:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23612:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23619:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23619:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23619:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23626:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23626:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23626:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23633:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23633:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23633:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23640:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23640:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23640:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23647:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23647:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23647:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23654:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23654:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23654:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23661:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23661:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23661:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23668:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23668:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23668:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23675:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23675:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23675:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23682:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23682:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23682:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23689:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23689:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23689:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23696:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23696:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23696:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23703:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23703:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23703:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23710:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23710:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23710:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23717:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23717:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23717:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23724:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23724:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23724:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23731:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23731:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23731:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23738:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23738:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23738:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23745:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23745:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23745:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23752:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23752:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23752:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23759:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23759:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23759:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23766:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23766:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23766:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23773:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23773:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23773:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23780:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23780:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23780:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23787:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23787:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23787:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23794:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23794:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23794:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23801:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23801:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23801:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23808:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23808:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23808:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23815:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23815:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23815:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23822:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23822:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23822:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23829:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23829:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23829:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23836:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23836:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23836:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23843:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23843:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23843:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23850:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23850:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23850:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23857:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23857:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23857:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23864:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23864:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23864:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23871:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23871:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23871:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23878:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23878:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23878:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23885:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23885:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23885:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23892:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23892:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23892:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23899:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23899:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23899:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23906:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23906:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23906:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23913:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23913:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23913:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23920:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23920:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23920:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23927:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23927:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23927:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23934:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23934:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23934:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23941:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23941:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23941:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23948:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23948:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23948:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23955:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23955:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23955:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23962:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23962:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23962:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23969:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23969:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23969:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23976:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23976:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23976:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23983:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23983:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23983:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23990:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23990:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23990:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23997:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:23997:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:23997:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24004:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24004:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24004:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24011:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24011:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24011:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24018:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24018:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24018:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24025:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24025:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24025:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24032:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24032:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24032:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24039:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24039:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24039:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24046:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24046:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24046:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24053:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24053:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24053:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24060:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24060:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24060:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24067:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24067:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24067:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24074:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24074:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24074:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24081:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24081:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24081:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24088:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24088:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24088:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24095:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24095:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24095:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24102:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24102:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24102:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24109:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24109:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24109:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24116:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24116:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24116:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24123:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24123:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24123:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24130:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24130:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24130:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24137:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24137:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24137:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24144:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24144:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24144:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24151:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24151:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24151:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24158:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24158:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24158:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24165:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24165:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24165:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24172:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24172:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24172:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24179:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24179:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24179:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24186:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24186:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24186:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24193:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24193:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24193:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24200:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24200:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24200:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24207:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24207:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24207:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24214:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24214:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24214:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24221:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24221:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24221:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24228:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24228:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24228:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24235:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24235:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24235:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24242:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24242:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24242:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24249:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24249:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24249:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24256:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24256:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24256:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24263:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24263:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24263:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24270:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24270:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24270:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24277:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24277:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24277:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24284:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24284:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24284:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24291:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24291:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24291:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24298:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24298:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24298:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24305:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24305:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24305:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24312:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24312:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24312:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24319:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24319:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24319:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24326:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24326:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24326:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24333:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24333:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24333:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24340:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24340:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24340:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24347:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24347:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24347:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24354:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24354:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24354:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24361:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24361:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24361:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24368:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24368:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24368:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24375:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24375:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24375:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24382:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24382:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24382:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24389:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24389:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24389:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24396:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24396:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24396:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24403:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24403:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24403:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24410:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24410:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24410:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24417:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24417:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24417:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24424:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24424:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24424:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24431:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24431:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24431:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24438:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24438:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24438:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24445:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24445:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24445:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24452:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24452:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24452:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24459:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24459:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24459:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24466:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24466:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24466:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24473:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24473:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24473:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24480:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24480:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24480:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24487:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24487:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24487:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24494:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24494:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24494:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24501:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24501:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24501:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24508:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24508:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24508:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24515:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24515:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24515:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24522:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24522:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24522:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24529:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24529:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24529:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24536:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24536:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24536:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24543:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24543:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24543:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24550:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24550:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24550:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24557:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24557:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24557:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24564:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24564:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24564:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24571:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24571:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24571:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24578:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24578:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24578:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24585:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24585:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24585:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24592:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24592:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24592:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24599:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24599:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24599:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24606:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24606:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24606:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24613:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24613:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24613:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24620:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24620:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24620:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24627:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24627:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24627:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24634:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24634:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24634:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24641:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24641:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24641:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24648:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24648:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24648:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24655:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24655:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24655:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24662:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24662:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24662:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24669:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24669:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24669:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24676:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24676:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24676:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24683:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24683:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24683:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24690:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24690:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24690:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24697:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24697:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24697:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24703:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24703:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24703:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24709:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24709:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24709:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24715:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24715:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24715:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24721:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24721:27 error: no declaration found for element 'IfcPolyline'
c:\esempioifcxml.xml:24721:27 error: attribute 'id' is not declared for element 'IfcPolyline'
c:\esempioifcxml.xml:24730:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24730:44 error: no declaration found for element 'IfcArbitraryClosedProfileDef'
c:\esempioifcxml.xml:24730:44 error: attribute 'id' is not declared for element 'IfcArbitraryClosedProfileDef'
c:\esempioifcxml.xml:24736:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24736:28 error: no declaration found for element 'IfcDirection'
c:\esempioifcxml.xml:24736:28 error: attribute 'id' is not declared for element 'IfcDirection'
c:\esempioifcxml.xml:24743:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24743:35 error: no declaration found for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:24743:35 error: attribute 'id' is not declared for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:24754:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24754:36 error: no declaration found for element 'IfcExtrudedAreaSolid'
c:\esempioifcxml.xml:24754:36 error: attribute 'id' is not declared for element 'IfcExtrudedAreaSolid'
c:\esempioifcxml.xml:24766:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24766:38 error: no declaration found for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:24766:38 error: attribute 'id' is not declared for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:24776:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24776:41 error: no declaration found for element 'IfcProductDefinitionShape'
c:\esempioifcxml.xml:24776:41 error: attribute 'id' is not declared for element 'IfcProductDefinitionShape'
c:\esempioifcxml.xml:24781:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24781:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24781:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24788:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24788:35 error: no declaration found for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:24788:35 error: attribute 'id' is not declared for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:24799:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24799:33 error: no declaration found for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:24799:33 error: attribute 'id' is not declared for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:24807:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24807:33 error: no declaration found for element 'IfcOpeningElement'
c:\esempioifcxml.xml:24807:33 error: attribute 'id' is not declared for element 'IfcOpeningElement'
c:\esempioifcxml.xml:24820:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24820:34 error: no declaration found for element 'IfcRelVoidsElement'
c:\esempioifcxml.xml:24820:34 error: attribute 'id' is not declared for element 'IfcRelVoidsElement'
c:\esempioifcxml.xml:24832:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24832:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24832:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:24839:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24839:35 error: no declaration found for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:24839:35 error: attribute 'id' is not declared for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:24850:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24850:33 error: no declaration found for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:24850:33 error: attribute 'id' is not declared for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:24858:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24858:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:24858:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:24864:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24864:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:24864:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:24869:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24869:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:24869:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:24875:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24875:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:24875:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:24880:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24880:29 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:24880:29 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:24888:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24888:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:24888:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:24894:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24894:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:24894:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:24899:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24899:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:24899:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:24905:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24905:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:24905:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:24910:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24910:29 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:24910:29 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:24918:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24918:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:24918:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:24924:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24924:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:24924:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:24929:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24929:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:24929:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:24935:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24935:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:24935:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:24940:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24940:29 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:24940:29 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:24948:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24948:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:24948:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:24954:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24954:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:24954:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:24959:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24959:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:24959:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:24965:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24965:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:24965:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:24970:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24970:29 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:24970:29 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:24978:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24978:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:24978:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:24984:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24984:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:24984:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:24989:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24989:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:24989:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:24995:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:24995:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:24995:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25000:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25000:29 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:25000:29 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:25008:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25008:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25008:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25014:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25014:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25014:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25019:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25019:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25019:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25025:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25025:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25025:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25030:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25030:29 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:25030:29 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:25038:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25038:41 error: no declaration found for element 'IfcProductDefinitionShape'
c:\esempioifcxml.xml:25038:41 error: attribute 'id' is not declared for element 'IfcProductDefinitionShape'
c:\esempioifcxml.xml:25043:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25043:25 error: no declaration found for element 'IfcWindow'
c:\esempioifcxml.xml:25043:25 error: attribute 'id' is not declared for element 'IfcWindow'
c:\esempioifcxml.xml:25058:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25058:34 error: no declaration found for element 'IfcRelFillsElement'
c:\esempioifcxml.xml:25058:34 error: attribute 'id' is not declared for element 'IfcRelFillsElement'
c:\esempioifcxml.xml:25070:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25070:41 error: no declaration found for element 'IfcWindowLiningProperties'
c:\esempioifcxml.xml:25070:41 error: attribute 'id' is not declared for element 'IfcWindowLiningProperties'
c:\esempioifcxml.xml:25078:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25078:40 error: no declaration found for element 'IfcWindowPanelProperties'
c:\esempioifcxml.xml:25078:40 error: attribute 'id' is not declared for element 'IfcWindowPanelProperties'
c:\esempioifcxml.xml:25086:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25086:40 error: no declaration found for element 'IfcWindowPanelProperties'
c:\esempioifcxml.xml:25086:40 error: attribute 'id' is not declared for element 'IfcWindowPanelProperties'
c:\esempioifcxml.xml:25094:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25094:40 error: no declaration found for element 'IfcWindowPanelProperties'
c:\esempioifcxml.xml:25094:40 error: attribute 'id' is not declared for element 'IfcWindowPanelProperties'
c:\esempioifcxml.xml:25102:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25102:30 error: no declaration found for element 'IfcWindowStyle'
c:\esempioifcxml.xml:25102:30 error: attribute 'id' is not declared for element 'IfcWindowStyle'
c:\esempioifcxml.xml:25119:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25119:35 error: no declaration found for element 'IfcRelDefinesByType'
c:\esempioifcxml.xml:25119:35 error: attribute 'id' is not declared for element 'IfcRelDefinesByType'
c:\esempioifcxml.xml:25132:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25132:32 error: no declaration found for element 'IfcMaterialLayer'
c:\esempioifcxml.xml:25132:32 error: attribute 'id' is not declared for element 'IfcMaterialLayer'
c:\esempioifcxml.xml:25139:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25139:35 error: no declaration found for element 'IfcMaterialLayerSet'
c:\esempioifcxml.xml:25139:35 error: attribute 'id' is not declared for element 'IfcMaterialLayerSet'
c:\esempioifcxml.xml:25145:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25145:40 error: no declaration found for element 'IfcMaterialLayerSetUsage'
c:\esempioifcxml.xml:25145:40 error: attribute 'id' is not declared for element 'IfcMaterialLayerSetUsage'
c:\esempioifcxml.xml:25153:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25153:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:25153:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:25160:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25160:35 error: no declaration found for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:25160:35 error: attribute 'id' is not declared for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:25171:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25171:33 error: no declaration found for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:25171:33 error: attribute 'id' is not declared for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:25179:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25179:35 error: no declaration found for element 'IfcWallStandardCase'
c:\esempioifcxml.xml:25179:35 error: attribute 'id' is not declared for element 'IfcWallStandardCase'
c:\esempioifcxml.xml:25197:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25197:40 error: no declaration found for element 'IfcRelAssociatesMaterial'
c:\esempioifcxml.xml:25197:40 error: attribute 'id' is not declared for element 'IfcRelAssociatesMaterial'
c:\esempioifcxml.xml:25209:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25209:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:25209:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:25215:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25215:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:25215:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:25221:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25221:27 error: no declaration found for element 'IfcPolyline'
c:\esempioifcxml.xml:25221:27 error: attribute 'id' is not declared for element 'IfcPolyline'
c:\esempioifcxml.xml:25227:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25227:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:25227:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:25233:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25233:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:25233:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:25239:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25239:27 error: no declaration found for element 'IfcPolyline'
c:\esempioifcxml.xml:25239:27 error: attribute 'id' is not declared for element 'IfcPolyline'
c:\esempioifcxml.xml:25245:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25245:42 error: no declaration found for element 'IfcConnectionCurveGeometry'
c:\esempioifcxml.xml:25245:42 error: attribute 'id' is not declared for element 'IfcConnectionCurveGeometry'
c:\esempioifcxml.xml:25253:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25253:42 error: no declaration found for element 'IfcRelConnectsPathElements'
c:\esempioifcxml.xml:25253:42 error: attribute 'id' is not declared for element 'IfcRelConnectsPathElements'
c:\esempioifcxml.xml:25272:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25272:32 error: no declaration found for element 'IfcMaterialLayer'
c:\esempioifcxml.xml:25272:32 error: attribute 'id' is not declared for element 'IfcMaterialLayer'
c:\esempioifcxml.xml:25279:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25279:35 error: no declaration found for element 'IfcMaterialLayerSet'
c:\esempioifcxml.xml:25279:35 error: attribute 'id' is not declared for element 'IfcMaterialLayerSet'
c:\esempioifcxml.xml:25285:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25285:40 error: no declaration found for element 'IfcMaterialLayerSetUsage'
c:\esempioifcxml.xml:25285:40 error: attribute 'id' is not declared for element 'IfcMaterialLayerSetUsage'
c:\esempioifcxml.xml:25293:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25293:28 error: no declaration found for element 'IfcDirection'
c:\esempioifcxml.xml:25293:28 error: attribute 'id' is not declared for element 'IfcDirection'
c:\esempioifcxml.xml:25300:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25300:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:25300:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:25307:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25307:35 error: no declaration found for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:25307:35 error: attribute 'id' is not declared for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:25318:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25318:33 error: no declaration found for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:25318:33 error: attribute 'id' is not declared for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:25326:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25326:35 error: no declaration found for element 'IfcWallStandardCase'
c:\esempioifcxml.xml:25326:35 error: attribute 'id' is not declared for element 'IfcWallStandardCase'
c:\esempioifcxml.xml:25344:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25344:40 error: no declaration found for element 'IfcRelAssociatesMaterial'
c:\esempioifcxml.xml:25344:40 error: attribute 'id' is not declared for element 'IfcRelAssociatesMaterial'
c:\esempioifcxml.xml:25356:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25356:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:25356:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:25362:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25362:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:25362:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:25368:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25368:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:25368:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:25374:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25374:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:25374:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:25380:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25380:27 error: no declaration found for element 'IfcPolyline'
c:\esempioifcxml.xml:25380:27 error: attribute 'id' is not declared for element 'IfcPolyline'
c:\esempioifcxml.xml:25389:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25389:44 error: no declaration found for element 'IfcArbitraryClosedProfileDef'
c:\esempioifcxml.xml:25389:44 error: attribute 'id' is not declared for element 'IfcArbitraryClosedProfileDef'
c:\esempioifcxml.xml:25395:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25395:28 error: no declaration found for element 'IfcDirection'
c:\esempioifcxml.xml:25395:28 error: attribute 'id' is not declared for element 'IfcDirection'
c:\esempioifcxml.xml:25402:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25402:35 error: no declaration found for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:25402:35 error: attribute 'id' is not declared for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:25413:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25413:36 error: no declaration found for element 'IfcExtrudedAreaSolid'
c:\esempioifcxml.xml:25413:36 error: attribute 'id' is not declared for element 'IfcExtrudedAreaSolid'
c:\esempioifcxml.xml:25425:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25425:38 error: no declaration found for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:25425:38 error: attribute 'id' is not declared for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:25435:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25435:41 error: no declaration found for element 'IfcProductDefinitionShape'
c:\esempioifcxml.xml:25435:41 error: attribute 'id' is not declared for element 'IfcProductDefinitionShape'
c:\esempioifcxml.xml:25440:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25440:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:25440:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:25447:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25447:35 error: no declaration found for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:25447:35 error: attribute 'id' is not declared for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:25458:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25458:33 error: no declaration found for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:25458:33 error: attribute 'id' is not declared for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:25466:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25466:33 error: no declaration found for element 'IfcOpeningElement'
c:\esempioifcxml.xml:25466:33 error: attribute 'id' is not declared for element 'IfcOpeningElement'
c:\esempioifcxml.xml:25479:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25479:34 error: no declaration found for element 'IfcRelVoidsElement'
c:\esempioifcxml.xml:25479:34 error: attribute 'id' is not declared for element 'IfcRelVoidsElement'
c:\esempioifcxml.xml:25491:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25491:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:25491:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:25498:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25498:35 error: no declaration found for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:25498:35 error: attribute 'id' is not declared for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:25509:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25509:33 error: no declaration found for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:25509:33 error: attribute 'id' is not declared for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:25517:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25517:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25517:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25523:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25523:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25523:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25528:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25528:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25528:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25534:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25534:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25534:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25539:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25539:29 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:25539:29 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:25547:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25547:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25547:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25553:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25553:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25553:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25558:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25558:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25558:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25564:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25564:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25564:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25569:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25569:29 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:25569:29 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:25577:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25577:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25577:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25583:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25583:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25583:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25588:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25588:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25588:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25594:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25594:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25594:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25599:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25599:29 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:25599:29 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:25607:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25607:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25607:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25613:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25613:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25613:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25618:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25618:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25618:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25624:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25624:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25624:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25629:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25629:29 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:25629:29 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:25637:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25637:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25637:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25643:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25643:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25643:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25648:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25648:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25648:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25654:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25654:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25654:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25659:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25659:29 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:25659:29 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:25667:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25667:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25667:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25673:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25673:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25673:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25678:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25678:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25678:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25684:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25684:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25684:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25689:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25689:29 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:25689:29 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:25697:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25697:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25697:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25703:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25703:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25703:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25708:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25708:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25708:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25714:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25714:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25714:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25719:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25719:29 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:25719:29 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:25727:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25727:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25727:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25733:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25733:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25733:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25738:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25738:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25738:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25744:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25744:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25744:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25749:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25749:29 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:25749:29 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:25757:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25757:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25757:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25763:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25763:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25763:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25768:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25768:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25768:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25774:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25774:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25774:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25779:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25779:29 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:25779:29 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:25787:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25787:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25787:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25793:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25793:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25793:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25798:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25798:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25798:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25804:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25804:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25804:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25809:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25809:29 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:25809:29 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:25817:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25817:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25817:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25823:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25823:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25823:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25828:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25828:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25828:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25834:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25834:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25834:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25839:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25839:29 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:25839:29 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:25847:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25847:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25847:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25853:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25853:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25853:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25858:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25858:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25858:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25864:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25864:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25864:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25869:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25869:29 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:25869:29 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:25877:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25877:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25877:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25883:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25883:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25883:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25888:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25888:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25888:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25894:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25894:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25894:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25899:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25899:29 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:25899:29 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:25907:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25907:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25907:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25913:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25913:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25913:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25918:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25918:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25918:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25924:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25924:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25924:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25929:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25929:29 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:25929:29 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:25937:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25937:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25937:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25943:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25943:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25943:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25948:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25948:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25948:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25954:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25954:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25954:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25959:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25959:29 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:25959:29 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:25967:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25967:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25967:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25973:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25973:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25973:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25978:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25978:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25978:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25984:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25984:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25984:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:25989:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25989:29 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:25989:29 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:25997:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:25997:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:25997:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:26003:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26003:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:26003:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:26008:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26008:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:26008:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:26014:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26014:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:26014:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:26019:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26019:29 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:26019:29 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:26027:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26027:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:26027:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:26033:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26033:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:26033:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:26038:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26038:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:26038:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:26044:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26044:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:26044:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:26049:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26049:29 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:26049:29 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:26057:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26057:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:26057:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:26063:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26063:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:26063:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:26068:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26068:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:26068:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:26074:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26074:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:26074:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:26079:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26079:29 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:26079:29 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:26087:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26087:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:26087:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:26093:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26093:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:26093:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:26098:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26098:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:26098:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:26104:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26104:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:26104:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:26109:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26109:29 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:26109:29 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:26117:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26117:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:26117:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:26123:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26123:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:26123:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:26128:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26128:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:26128:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:26134:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26134:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:26134:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:26139:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26139:29 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:26139:29 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:26147:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26147:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:26147:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:26153:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26153:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:26153:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:26158:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26158:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:26158:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:26164:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26164:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:26164:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:26169:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26169:29 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:26169:29 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:26177:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26177:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:26177:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:26183:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26183:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:26183:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:26188:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26188:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:26188:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:26194:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26194:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:26194:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:26199:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26199:29 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:26199:29 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:26207:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26207:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:26207:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:26213:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26213:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:26213:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:26218:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26218:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:26218:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:26224:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26224:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:26224:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:26229:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26229:29 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:26229:29 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:26237:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26237:41 error: no declaration found for element 'IfcProductDefinitionShape'
c:\esempioifcxml.xml:26237:41 error: attribute 'id' is not declared for element 'IfcProductDefinitionShape'
c:\esempioifcxml.xml:26242:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26242:23 error: no declaration found for element 'IfcDoor'
c:\esempioifcxml.xml:26242:23 error: attribute 'id' is not declared for element 'IfcDoor'
c:\esempioifcxml.xml:26257:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26257:34 error: no declaration found for element 'IfcRelFillsElement'
c:\esempioifcxml.xml:26257:34 error: attribute 'id' is not declared for element 'IfcRelFillsElement'
c:\esempioifcxml.xml:26269:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26269:39 error: no declaration found for element 'IfcDoorLiningProperties'
c:\esempioifcxml.xml:26269:39 error: attribute 'id' is not declared for element 'IfcDoorLiningProperties'
c:\esempioifcxml.xml:26277:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26277:38 error: no declaration found for element 'IfcDoorPanelProperties'
c:\esempioifcxml.xml:26277:38 error: attribute 'id' is not declared for element 'IfcDoorPanelProperties'
c:\esempioifcxml.xml:26286:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26286:28 error: no declaration found for element 'IfcDoorStyle'
c:\esempioifcxml.xml:26286:28 error: attribute 'id' is not declared for element 'IfcDoorStyle'
c:\esempioifcxml.xml:26301:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26301:35 error: no declaration found for element 'IfcRelDefinesByType'
c:\esempioifcxml.xml:26301:35 error: attribute 'id' is not declared for element 'IfcRelDefinesByType'
c:\esempioifcxml.xml:26314:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26314:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:26314:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:26320:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26320:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:26320:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:26326:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26326:27 error: no declaration found for element 'IfcPolyline'
c:\esempioifcxml.xml:26326:27 error: attribute 'id' is not declared for element 'IfcPolyline'
c:\esempioifcxml.xml:26332:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26332:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:26332:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:26338:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26338:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:26338:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:26344:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26344:27 error: no declaration found for element 'IfcPolyline'
c:\esempioifcxml.xml:26344:27 error: attribute 'id' is not declared for element 'IfcPolyline'
c:\esempioifcxml.xml:26350:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26350:42 error: no declaration found for element 'IfcConnectionCurveGeometry'
c:\esempioifcxml.xml:26350:42 error: attribute 'id' is not declared for element 'IfcConnectionCurveGeometry'
c:\esempioifcxml.xml:26358:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26358:42 error: no declaration found for element 'IfcRelConnectsPathElements'
c:\esempioifcxml.xml:26358:42 error: attribute 'id' is not declared for element 'IfcRelConnectsPathElements'
c:\esempioifcxml.xml:26377:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26377:32 error: no declaration found for element 'IfcMaterialLayer'
c:\esempioifcxml.xml:26377:32 error: attribute 'id' is not declared for element 'IfcMaterialLayer'
c:\esempioifcxml.xml:26384:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26384:35 error: no declaration found for element 'IfcMaterialLayerSet'
c:\esempioifcxml.xml:26384:35 error: attribute 'id' is not declared for element 'IfcMaterialLayerSet'
c:\esempioifcxml.xml:26390:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26390:40 error: no declaration found for element 'IfcMaterialLayerSetUsage'
c:\esempioifcxml.xml:26390:40 error: attribute 'id' is not declared for element 'IfcMaterialLayerSetUsage'
c:\esempioifcxml.xml:26398:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26398:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:26398:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:26405:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26405:35 error: no declaration found for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:26405:35 error: attribute 'id' is not declared for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:26416:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26416:33 error: no declaration found for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:26416:33 error: attribute 'id' is not declared for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:26424:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26424:35 error: no declaration found for element 'IfcWallStandardCase'
c:\esempioifcxml.xml:26424:35 error: attribute 'id' is not declared for element 'IfcWallStandardCase'
c:\esempioifcxml.xml:26442:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26442:40 error: no declaration found for element 'IfcRelAssociatesMaterial'
c:\esempioifcxml.xml:26442:40 error: attribute 'id' is not declared for element 'IfcRelAssociatesMaterial'
c:\esempioifcxml.xml:26454:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26454:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:26454:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:26460:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26460:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:26460:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:26466:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26466:27 error: no declaration found for element 'IfcPolyline'
c:\esempioifcxml.xml:26466:27 error: attribute 'id' is not declared for element 'IfcPolyline'
c:\esempioifcxml.xml:26472:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26472:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:26472:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:26478:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26478:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:26478:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:26484:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26484:27 error: no declaration found for element 'IfcPolyline'
c:\esempioifcxml.xml:26484:27 error: attribute 'id' is not declared for element 'IfcPolyline'
c:\esempioifcxml.xml:26490:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26490:42 error: no declaration found for element 'IfcConnectionCurveGeometry'
c:\esempioifcxml.xml:26490:42 error: attribute 'id' is not declared for element 'IfcConnectionCurveGeometry'
c:\esempioifcxml.xml:26498:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26498:42 error: no declaration found for element 'IfcRelConnectsPathElements'
c:\esempioifcxml.xml:26498:42 error: attribute 'id' is not declared for element 'IfcRelConnectsPathElements'
c:\esempioifcxml.xml:26517:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26517:32 error: no declaration found for element 'IfcMaterialLayer'
c:\esempioifcxml.xml:26517:32 error: attribute 'id' is not declared for element 'IfcMaterialLayer'
c:\esempioifcxml.xml:26524:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26524:35 error: no declaration found for element 'IfcMaterialLayerSet'
c:\esempioifcxml.xml:26524:35 error: attribute 'id' is not declared for element 'IfcMaterialLayerSet'
c:\esempioifcxml.xml:26530:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26530:40 error: no declaration found for element 'IfcMaterialLayerSetUsage'
c:\esempioifcxml.xml:26530:40 error: attribute 'id' is not declared for element 'IfcMaterialLayerSetUsage'
c:\esempioifcxml.xml:26538:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26538:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:26538:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:26545:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26545:35 error: no declaration found for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:26545:35 error: attribute 'id' is not declared for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:26556:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26556:33 error: no declaration found for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:26556:33 error: attribute 'id' is not declared for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:26564:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26564:35 error: no declaration found for element 'IfcWallStandardCase'
c:\esempioifcxml.xml:26564:35 error: attribute 'id' is not declared for element 'IfcWallStandardCase'
c:\esempioifcxml.xml:26582:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26582:40 error: no declaration found for element 'IfcRelAssociatesMaterial'
c:\esempioifcxml.xml:26582:40 error: attribute 'id' is not declared for element 'IfcRelAssociatesMaterial'
c:\esempioifcxml.xml:26594:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26594:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:26594:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:26600:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26600:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:26600:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:26606:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26606:27 error: no declaration found for element 'IfcPolyline'
c:\esempioifcxml.xml:26606:27 error: attribute 'id' is not declared for element 'IfcPolyline'
c:\esempioifcxml.xml:26612:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26612:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:26612:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:26618:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26618:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:26618:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:26624:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26624:27 error: no declaration found for element 'IfcPolyline'
c:\esempioifcxml.xml:26624:27 error: attribute 'id' is not declared for element 'IfcPolyline'
c:\esempioifcxml.xml:26630:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26630:42 error: no declaration found for element 'IfcConnectionCurveGeometry'
c:\esempioifcxml.xml:26630:42 error: attribute 'id' is not declared for element 'IfcConnectionCurveGeometry'
c:\esempioifcxml.xml:26638:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26638:42 error: no declaration found for element 'IfcRelConnectsPathElements'
c:\esempioifcxml.xml:26638:42 error: attribute 'id' is not declared for element 'IfcRelConnectsPathElements'
c:\esempioifcxml.xml:26657:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26657:32 error: no declaration found for element 'IfcMaterialLayer'
c:\esempioifcxml.xml:26657:32 error: attribute 'id' is not declared for element 'IfcMaterialLayer'
c:\esempioifcxml.xml:26664:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26664:35 error: no declaration found for element 'IfcMaterialLayerSet'
c:\esempioifcxml.xml:26664:35 error: attribute 'id' is not declared for element 'IfcMaterialLayerSet'
c:\esempioifcxml.xml:26670:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26670:40 error: no declaration found for element 'IfcMaterialLayerSetUsage'
c:\esempioifcxml.xml:26670:40 error: attribute 'id' is not declared for element 'IfcMaterialLayerSetUsage'
c:\esempioifcxml.xml:26678:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26678:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:26678:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:26685:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26685:35 error: no declaration found for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:26685:35 error: attribute 'id' is not declared for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:26696:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26696:33 error: no declaration found for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:26696:33 error: attribute 'id' is not declared for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:26704:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26704:35 error: no declaration found for element 'IfcWallStandardCase'
c:\esempioifcxml.xml:26704:35 error: attribute 'id' is not declared for element 'IfcWallStandardCase'
c:\esempioifcxml.xml:26722:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26722:40 error: no declaration found for element 'IfcRelAssociatesMaterial'
c:\esempioifcxml.xml:26722:40 error: attribute 'id' is not declared for element 'IfcRelAssociatesMaterial'
c:\esempioifcxml.xml:26734:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26734:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:26734:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:26740:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26740:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:26740:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:26746:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26746:27 error: no declaration found for element 'IfcPolyline'
c:\esempioifcxml.xml:26746:27 error: attribute 'id' is not declared for element 'IfcPolyline'
c:\esempioifcxml.xml:26752:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26752:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:26752:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:26758:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26758:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:26758:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:26764:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26764:27 error: no declaration found for element 'IfcPolyline'
c:\esempioifcxml.xml:26764:27 error: attribute 'id' is not declared for element 'IfcPolyline'
c:\esempioifcxml.xml:26770:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26770:42 error: no declaration found for element 'IfcConnectionCurveGeometry'
c:\esempioifcxml.xml:26770:42 error: attribute 'id' is not declared for element 'IfcConnectionCurveGeometry'
c:\esempioifcxml.xml:26778:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26778:42 error: no declaration found for element 'IfcRelConnectsPathElements'
c:\esempioifcxml.xml:26778:42 error: attribute 'id' is not declared for element 'IfcRelConnectsPathElements'
c:\esempioifcxml.xml:26797:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26797:32 error: no declaration found for element 'IfcMaterialLayer'
c:\esempioifcxml.xml:26797:32 error: attribute 'id' is not declared for element 'IfcMaterialLayer'
c:\esempioifcxml.xml:26804:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26804:35 error: no declaration found for element 'IfcMaterialLayerSet'
c:\esempioifcxml.xml:26804:35 error: attribute 'id' is not declared for element 'IfcMaterialLayerSet'
c:\esempioifcxml.xml:26810:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26810:40 error: no declaration found for element 'IfcMaterialLayerSetUsage'
c:\esempioifcxml.xml:26810:40 error: attribute 'id' is not declared for element 'IfcMaterialLayerSetUsage'
c:\esempioifcxml.xml:26818:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26818:28 error: no declaration found for element 'IfcDirection'
c:\esempioifcxml.xml:26818:28 error: attribute 'id' is not declared for element 'IfcDirection'
c:\esempioifcxml.xml:26825:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26825:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:26825:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:26832:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26832:35 error: no declaration found for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:26832:35 error: attribute 'id' is not declared for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:26843:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26843:33 error: no declaration found for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:26843:33 error: attribute 'id' is not declared for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:26851:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26851:35 error: no declaration found for element 'IfcWallStandardCase'
c:\esempioifcxml.xml:26851:35 error: attribute 'id' is not declared for element 'IfcWallStandardCase'
c:\esempioifcxml.xml:26869:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26869:40 error: no declaration found for element 'IfcRelAssociatesMaterial'
c:\esempioifcxml.xml:26869:40 error: attribute 'id' is not declared for element 'IfcRelAssociatesMaterial'
c:\esempioifcxml.xml:26881:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26881:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:26881:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:26887:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26887:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:26887:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:26893:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26893:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:26893:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:26899:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26899:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:26899:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:26905:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26905:27 error: no declaration found for element 'IfcPolyline'
c:\esempioifcxml.xml:26905:27 error: attribute 'id' is not declared for element 'IfcPolyline'
c:\esempioifcxml.xml:26914:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26914:44 error: no declaration found for element 'IfcArbitraryClosedProfileDef'
c:\esempioifcxml.xml:26914:44 error: attribute 'id' is not declared for element 'IfcArbitraryClosedProfileDef'
c:\esempioifcxml.xml:26920:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26920:28 error: no declaration found for element 'IfcDirection'
c:\esempioifcxml.xml:26920:28 error: attribute 'id' is not declared for element 'IfcDirection'
c:\esempioifcxml.xml:26927:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26927:35 error: no declaration found for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:26927:35 error: attribute 'id' is not declared for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:26938:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26938:36 error: no declaration found for element 'IfcExtrudedAreaSolid'
c:\esempioifcxml.xml:26938:36 error: attribute 'id' is not declared for element 'IfcExtrudedAreaSolid'
c:\esempioifcxml.xml:26950:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26950:38 error: no declaration found for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:26950:38 error: attribute 'id' is not declared for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:26960:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26960:41 error: no declaration found for element 'IfcProductDefinitionShape'
c:\esempioifcxml.xml:26960:41 error: attribute 'id' is not declared for element 'IfcProductDefinitionShape'
c:\esempioifcxml.xml:26965:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26965:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:26965:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:26972:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26972:35 error: no declaration found for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:26972:35 error: attribute 'id' is not declared for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:26983:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26983:33 error: no declaration found for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:26983:33 error: attribute 'id' is not declared for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:26991:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:26991:33 error: no declaration found for element 'IfcOpeningElement'
c:\esempioifcxml.xml:26991:33 error: attribute 'id' is not declared for element 'IfcOpeningElement'
c:\esempioifcxml.xml:27004:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27004:34 error: no declaration found for element 'IfcRelVoidsElement'
c:\esempioifcxml.xml:27004:34 error: attribute 'id' is not declared for element 'IfcRelVoidsElement'
c:\esempioifcxml.xml:27016:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27016:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:27016:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:27023:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27023:35 error: no declaration found for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:27023:35 error: attribute 'id' is not declared for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:27034:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27034:33 error: no declaration found for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:27034:33 error: attribute 'id' is not declared for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:27042:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27042:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:27042:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:27048:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27048:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:27048:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:27053:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27053:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:27053:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:27059:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27059:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:27059:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:27064:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27064:29 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:27064:29 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:27072:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27072:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:27072:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:27078:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27078:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:27078:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:27083:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27083:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:27083:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:27089:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27089:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:27089:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:27094:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27094:29 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:27094:29 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:27102:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27102:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:27102:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:27108:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27108:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:27108:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:27113:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27113:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:27113:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:27119:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27119:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:27119:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:27124:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27124:29 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:27124:29 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:27132:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27132:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:27132:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:27138:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27138:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:27138:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:27143:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27143:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:27143:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:27149:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27149:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:27149:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:27154:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27154:29 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:27154:29 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:27162:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27162:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:27162:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:27168:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27168:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:27168:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:27173:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27173:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:27173:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:27179:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27179:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:27179:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:27184:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27184:29 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:27184:29 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:27192:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27192:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:27192:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:27198:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27198:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:27198:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:27203:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27203:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:27203:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:27209:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27209:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:27209:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:27214:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27214:29 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:27214:29 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:27222:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27222:41 error: no declaration found for element 'IfcProductDefinitionShape'
c:\esempioifcxml.xml:27222:41 error: attribute 'id' is not declared for element 'IfcProductDefinitionShape'
c:\esempioifcxml.xml:27227:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27227:25 error: no declaration found for element 'IfcWindow'
c:\esempioifcxml.xml:27227:25 error: attribute 'id' is not declared for element 'IfcWindow'
c:\esempioifcxml.xml:27242:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27242:34 error: no declaration found for element 'IfcRelFillsElement'
c:\esempioifcxml.xml:27242:34 error: attribute 'id' is not declared for element 'IfcRelFillsElement'
c:\esempioifcxml.xml:27254:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27254:41 error: no declaration found for element 'IfcWindowLiningProperties'
c:\esempioifcxml.xml:27254:41 error: attribute 'id' is not declared for element 'IfcWindowLiningProperties'
c:\esempioifcxml.xml:27262:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27262:40 error: no declaration found for element 'IfcWindowPanelProperties'
c:\esempioifcxml.xml:27262:40 error: attribute 'id' is not declared for element 'IfcWindowPanelProperties'
c:\esempioifcxml.xml:27270:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27270:40 error: no declaration found for element 'IfcWindowPanelProperties'
c:\esempioifcxml.xml:27270:40 error: attribute 'id' is not declared for element 'IfcWindowPanelProperties'
c:\esempioifcxml.xml:27278:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27278:40 error: no declaration found for element 'IfcWindowPanelProperties'
c:\esempioifcxml.xml:27278:40 error: attribute 'id' is not declared for element 'IfcWindowPanelProperties'
c:\esempioifcxml.xml:27286:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27286:30 error: no declaration found for element 'IfcWindowStyle'
c:\esempioifcxml.xml:27286:30 error: attribute 'id' is not declared for element 'IfcWindowStyle'
c:\esempioifcxml.xml:27303:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27303:35 error: no declaration found for element 'IfcRelDefinesByType'
c:\esempioifcxml.xml:27303:35 error: attribute 'id' is not declared for element 'IfcRelDefinesByType'
c:\esempioifcxml.xml:27316:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27316:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:27316:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:27322:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27322:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:27322:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:27328:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27328:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:27328:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:27334:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27334:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:27334:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:27340:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27340:27 error: no declaration found for element 'IfcPolyline'
c:\esempioifcxml.xml:27340:27 error: attribute 'id' is not declared for element 'IfcPolyline'
c:\esempioifcxml.xml:27349:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27349:44 error: no declaration found for element 'IfcArbitraryClosedProfileDef'
c:\esempioifcxml.xml:27349:44 error: attribute 'id' is not declared for element 'IfcArbitraryClosedProfileDef'
c:\esempioifcxml.xml:27355:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27355:28 error: no declaration found for element 'IfcDirection'
c:\esempioifcxml.xml:27355:28 error: attribute 'id' is not declared for element 'IfcDirection'
c:\esempioifcxml.xml:27362:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27362:35 error: no declaration found for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:27362:35 error: attribute 'id' is not declared for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:27373:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27373:36 error: no declaration found for element 'IfcExtrudedAreaSolid'
c:\esempioifcxml.xml:27373:36 error: attribute 'id' is not declared for element 'IfcExtrudedAreaSolid'
c:\esempioifcxml.xml:27385:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27385:38 error: no declaration found for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:27385:38 error: attribute 'id' is not declared for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:27395:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27395:41 error: no declaration found for element 'IfcProductDefinitionShape'
c:\esempioifcxml.xml:27395:41 error: attribute 'id' is not declared for element 'IfcProductDefinitionShape'
c:\esempioifcxml.xml:27400:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27400:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:27400:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:27407:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27407:35 error: no declaration found for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:27407:35 error: attribute 'id' is not declared for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:27418:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27418:33 error: no declaration found for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:27418:33 error: attribute 'id' is not declared for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:27426:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27426:33 error: no declaration found for element 'IfcOpeningElement'
c:\esempioifcxml.xml:27426:33 error: attribute 'id' is not declared for element 'IfcOpeningElement'
c:\esempioifcxml.xml:27439:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27439:34 error: no declaration found for element 'IfcRelVoidsElement'
c:\esempioifcxml.xml:27439:34 error: attribute 'id' is not declared for element 'IfcRelVoidsElement'
c:\esempioifcxml.xml:27451:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27451:33 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:27451:33 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:27458:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27458:35 error: no declaration found for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:27458:35 error: attribute 'id' is not declared for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:27469:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27469:33 error: no declaration found for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:27469:33 error: attribute 'id' is not declared for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:27477:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27477:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:27477:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:27483:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27483:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:27483:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:27488:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27488:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:27488:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:27494:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27494:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:27494:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:27499:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27499:29 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:27499:29 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:27507:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27507:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:27507:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:27513:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27513:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:27513:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:27518:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27518:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:27518:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:27524:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27524:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:27524:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:27529:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27529:29 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:27529:29 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:27537:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27537:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:27537:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:27543:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27543:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:27543:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:27548:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27548:31 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:27548:31 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:27554:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27554:46 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:27554:46 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:27559:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27559:29 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:27559:29 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:27567:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27567:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:27567:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:27573:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27573:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:27573:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:27578:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27578:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:27578:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:27584:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27584:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:27584:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:27589:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27589:30 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:27589:30 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:27597:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27597:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:27597:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:27603:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27603:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:27603:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:27608:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27608:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:27608:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:27614:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27614:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:27614:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:27619:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27619:30 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:27619:30 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:27627:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27627:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:27627:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:27633:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27633:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:27633:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:27638:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27638:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:27638:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:27644:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27644:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:27644:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:27649:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27649:30 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:27649:30 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:27657:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27657:42 error: no declaration found for element 'IfcProductDefinitionShape'
c:\esempioifcxml.xml:27657:42 error: attribute 'id' is not declared for element 'IfcProductDefinitionShape'
c:\esempioifcxml.xml:27662:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27662:26 error: no declaration found for element 'IfcWindow'
c:\esempioifcxml.xml:27662:26 error: attribute 'id' is not declared for element 'IfcWindow'
c:\esempioifcxml.xml:27677:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27677:35 error: no declaration found for element 'IfcRelFillsElement'
c:\esempioifcxml.xml:27677:35 error: attribute 'id' is not declared for element 'IfcRelFillsElement'
c:\esempioifcxml.xml:27689:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27689:42 error: no declaration found for element 'IfcWindowLiningProperties'
c:\esempioifcxml.xml:27689:42 error: attribute 'id' is not declared for element 'IfcWindowLiningProperties'
c:\esempioifcxml.xml:27697:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27697:41 error: no declaration found for element 'IfcWindowPanelProperties'
c:\esempioifcxml.xml:27697:41 error: attribute 'id' is not declared for element 'IfcWindowPanelProperties'
c:\esempioifcxml.xml:27705:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27705:41 error: no declaration found for element 'IfcWindowPanelProperties'
c:\esempioifcxml.xml:27705:41 error: attribute 'id' is not declared for element 'IfcWindowPanelProperties'
c:\esempioifcxml.xml:27713:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27713:41 error: no declaration found for element 'IfcWindowPanelProperties'
c:\esempioifcxml.xml:27713:41 error: attribute 'id' is not declared for element 'IfcWindowPanelProperties'
c:\esempioifcxml.xml:27721:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27721:31 error: no declaration found for element 'IfcWindowStyle'
c:\esempioifcxml.xml:27721:31 error: attribute 'id' is not declared for element 'IfcWindowStyle'
c:\esempioifcxml.xml:27738:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27738:36 error: no declaration found for element 'IfcRelDefinesByType'
c:\esempioifcxml.xml:27738:36 error: attribute 'id' is not declared for element 'IfcRelDefinesByType'
c:\esempioifcxml.xml:27751:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27751:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:27751:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:27757:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27757:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:27757:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:27763:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27763:28 error: no declaration found for element 'IfcPolyline'
c:\esempioifcxml.xml:27763:28 error: attribute 'id' is not declared for element 'IfcPolyline'
c:\esempioifcxml.xml:27769:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27769:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:27769:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:27775:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27775:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:27775:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:27781:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27781:28 error: no declaration found for element 'IfcPolyline'
c:\esempioifcxml.xml:27781:28 error: attribute 'id' is not declared for element 'IfcPolyline'
c:\esempioifcxml.xml:27787:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27787:43 error: no declaration found for element 'IfcConnectionCurveGeometry'
c:\esempioifcxml.xml:27787:43 error: attribute 'id' is not declared for element 'IfcConnectionCurveGeometry'
c:\esempioifcxml.xml:27795:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27795:43 error: no declaration found for element 'IfcRelConnectsPathElements'
c:\esempioifcxml.xml:27795:43 error: attribute 'id' is not declared for element 'IfcRelConnectsPathElements'
c:\esempioifcxml.xml:27814:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27814:33 error: no declaration found for element 'IfcMaterialLayer'
c:\esempioifcxml.xml:27814:33 error: attribute 'id' is not declared for element 'IfcMaterialLayer'
c:\esempioifcxml.xml:27821:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27821:36 error: no declaration found for element 'IfcMaterialLayerSet'
c:\esempioifcxml.xml:27821:36 error: attribute 'id' is not declared for element 'IfcMaterialLayerSet'
c:\esempioifcxml.xml:27827:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27827:41 error: no declaration found for element 'IfcMaterialLayerSetUsage'
c:\esempioifcxml.xml:27827:41 error: attribute 'id' is not declared for element 'IfcMaterialLayerSetUsage'
c:\esempioifcxml.xml:27835:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27835:29 error: no declaration found for element 'IfcDirection'
c:\esempioifcxml.xml:27835:29 error: attribute 'id' is not declared for element 'IfcDirection'
c:\esempioifcxml.xml:27842:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27842:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:27842:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:27849:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27849:36 error: no declaration found for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:27849:36 error: attribute 'id' is not declared for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:27860:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27860:34 error: no declaration found for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:27860:34 error: attribute 'id' is not declared for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:27868:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27868:36 error: no declaration found for element 'IfcWallStandardCase'
c:\esempioifcxml.xml:27868:36 error: attribute 'id' is not declared for element 'IfcWallStandardCase'
c:\esempioifcxml.xml:27886:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27886:41 error: no declaration found for element 'IfcRelAssociatesMaterial'
c:\esempioifcxml.xml:27886:41 error: attribute 'id' is not declared for element 'IfcRelAssociatesMaterial'
c:\esempioifcxml.xml:27898:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27898:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:27898:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:27904:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27904:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:27904:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:27910:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27910:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:27910:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:27916:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27916:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:27916:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:27922:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27922:28 error: no declaration found for element 'IfcPolyline'
c:\esempioifcxml.xml:27922:28 error: attribute 'id' is not declared for element 'IfcPolyline'
c:\esempioifcxml.xml:27931:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27931:45 error: no declaration found for element 'IfcArbitraryClosedProfileDef'
c:\esempioifcxml.xml:27931:45 error: attribute 'id' is not declared for element 'IfcArbitraryClosedProfileDef'
c:\esempioifcxml.xml:27937:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27937:29 error: no declaration found for element 'IfcDirection'
c:\esempioifcxml.xml:27937:29 error: attribute 'id' is not declared for element 'IfcDirection'
c:\esempioifcxml.xml:27944:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27944:36 error: no declaration found for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:27944:36 error: attribute 'id' is not declared for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:27955:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27955:37 error: no declaration found for element 'IfcExtrudedAreaSolid'
c:\esempioifcxml.xml:27955:37 error: attribute 'id' is not declared for element 'IfcExtrudedAreaSolid'
c:\esempioifcxml.xml:27967:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27967:39 error: no declaration found for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:27967:39 error: attribute 'id' is not declared for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:27977:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27977:42 error: no declaration found for element 'IfcProductDefinitionShape'
c:\esempioifcxml.xml:27977:42 error: attribute 'id' is not declared for element 'IfcProductDefinitionShape'
c:\esempioifcxml.xml:27982:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27982:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:27982:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:27989:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:27989:36 error: no declaration found for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:27989:36 error: attribute 'id' is not declared for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:28000:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28000:34 error: no declaration found for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:28000:34 error: attribute 'id' is not declared for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:28008:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28008:34 error: no declaration found for element 'IfcOpeningElement'
c:\esempioifcxml.xml:28008:34 error: attribute 'id' is not declared for element 'IfcOpeningElement'
c:\esempioifcxml.xml:28021:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28021:35 error: no declaration found for element 'IfcRelVoidsElement'
c:\esempioifcxml.xml:28021:35 error: attribute 'id' is not declared for element 'IfcRelVoidsElement'
c:\esempioifcxml.xml:28033:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28033:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:28033:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:28040:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28040:36 error: no declaration found for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:28040:36 error: attribute 'id' is not declared for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:28051:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28051:34 error: no declaration found for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:28051:34 error: attribute 'id' is not declared for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:28059:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28059:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:28059:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:28065:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28065:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:28065:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:28070:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28070:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:28070:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:28076:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28076:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:28076:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:28081:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28081:30 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:28081:30 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:28089:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28089:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:28089:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:28095:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28095:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:28095:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:28100:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28100:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:28100:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:28106:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28106:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:28106:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:28111:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28111:30 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:28111:30 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:28119:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28119:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:28119:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:28125:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28125:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:28125:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:28130:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28130:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:28130:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:28136:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28136:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:28136:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:28141:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28141:30 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:28141:30 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:28149:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28149:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:28149:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:28155:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28155:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:28155:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:28160:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28160:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:28160:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:28166:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28166:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:28166:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:28171:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28171:30 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:28171:30 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:28179:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28179:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:28179:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:28185:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28185:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:28185:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:28190:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28190:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:28190:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:28196:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28196:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:28196:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:28201:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28201:30 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:28201:30 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:28209:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28209:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:28209:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:28215:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28215:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:28215:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:28220:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28220:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:28220:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:28226:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28226:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:28226:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:28231:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28231:30 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:28231:30 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:28239:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28239:42 error: no declaration found for element 'IfcProductDefinitionShape'
c:\esempioifcxml.xml:28239:42 error: attribute 'id' is not declared for element 'IfcProductDefinitionShape'
c:\esempioifcxml.xml:28244:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28244:26 error: no declaration found for element 'IfcWindow'
c:\esempioifcxml.xml:28244:26 error: attribute 'id' is not declared for element 'IfcWindow'
c:\esempioifcxml.xml:28259:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28259:35 error: no declaration found for element 'IfcRelFillsElement'
c:\esempioifcxml.xml:28259:35 error: attribute 'id' is not declared for element 'IfcRelFillsElement'
c:\esempioifcxml.xml:28271:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28271:42 error: no declaration found for element 'IfcWindowLiningProperties'
c:\esempioifcxml.xml:28271:42 error: attribute 'id' is not declared for element 'IfcWindowLiningProperties'
c:\esempioifcxml.xml:28279:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28279:41 error: no declaration found for element 'IfcWindowPanelProperties'
c:\esempioifcxml.xml:28279:41 error: attribute 'id' is not declared for element 'IfcWindowPanelProperties'
c:\esempioifcxml.xml:28287:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28287:41 error: no declaration found for element 'IfcWindowPanelProperties'
c:\esempioifcxml.xml:28287:41 error: attribute 'id' is not declared for element 'IfcWindowPanelProperties'
c:\esempioifcxml.xml:28295:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28295:41 error: no declaration found for element 'IfcWindowPanelProperties'
c:\esempioifcxml.xml:28295:41 error: attribute 'id' is not declared for element 'IfcWindowPanelProperties'
c:\esempioifcxml.xml:28303:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28303:31 error: no declaration found for element 'IfcWindowStyle'
c:\esempioifcxml.xml:28303:31 error: attribute 'id' is not declared for element 'IfcWindowStyle'
c:\esempioifcxml.xml:28320:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28320:36 error: no declaration found for element 'IfcRelDefinesByType'
c:\esempioifcxml.xml:28320:36 error: attribute 'id' is not declared for element 'IfcRelDefinesByType'
c:\esempioifcxml.xml:28333:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28333:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:28333:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:28339:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28339:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:28339:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:28345:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28345:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:28345:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:28351:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28351:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:28351:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:28357:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28357:28 error: no declaration found for element 'IfcPolyline'
c:\esempioifcxml.xml:28357:28 error: attribute 'id' is not declared for element 'IfcPolyline'
c:\esempioifcxml.xml:28366:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28366:45 error: no declaration found for element 'IfcArbitraryClosedProfileDef'
c:\esempioifcxml.xml:28366:45 error: attribute 'id' is not declared for element 'IfcArbitraryClosedProfileDef'
c:\esempioifcxml.xml:28372:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28372:29 error: no declaration found for element 'IfcDirection'
c:\esempioifcxml.xml:28372:29 error: attribute 'id' is not declared for element 'IfcDirection'
c:\esempioifcxml.xml:28379:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28379:36 error: no declaration found for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:28379:36 error: attribute 'id' is not declared for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:28390:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28390:37 error: no declaration found for element 'IfcExtrudedAreaSolid'
c:\esempioifcxml.xml:28390:37 error: attribute 'id' is not declared for element 'IfcExtrudedAreaSolid'
c:\esempioifcxml.xml:28402:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28402:39 error: no declaration found for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:28402:39 error: attribute 'id' is not declared for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:28412:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28412:42 error: no declaration found for element 'IfcProductDefinitionShape'
c:\esempioifcxml.xml:28412:42 error: attribute 'id' is not declared for element 'IfcProductDefinitionShape'
c:\esempioifcxml.xml:28417:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28417:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:28417:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:28424:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28424:36 error: no declaration found for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:28424:36 error: attribute 'id' is not declared for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:28435:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28435:34 error: no declaration found for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:28435:34 error: attribute 'id' is not declared for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:28443:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28443:34 error: no declaration found for element 'IfcOpeningElement'
c:\esempioifcxml.xml:28443:34 error: attribute 'id' is not declared for element 'IfcOpeningElement'
c:\esempioifcxml.xml:28456:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28456:35 error: no declaration found for element 'IfcRelVoidsElement'
c:\esempioifcxml.xml:28456:35 error: attribute 'id' is not declared for element 'IfcRelVoidsElement'
c:\esempioifcxml.xml:28468:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28468:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:28468:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:28475:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28475:36 error: no declaration found for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:28475:36 error: attribute 'id' is not declared for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:28486:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28486:34 error: no declaration found for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:28486:34 error: attribute 'id' is not declared for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:28494:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28494:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:28494:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:28500:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28500:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:28500:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:28505:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28505:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:28505:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:28511:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28511:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:28511:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:28516:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28516:30 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:28516:30 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:28524:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28524:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:28524:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:28530:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28530:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:28530:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:28535:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28535:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:28535:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:28541:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28541:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:28541:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:28546:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28546:30 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:28546:30 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:28554:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28554:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:28554:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:28560:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28560:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:28560:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:28565:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28565:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:28565:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:28571:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28571:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:28571:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:28576:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28576:30 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:28576:30 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:28584:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28584:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:28584:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:28590:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28590:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:28590:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:28595:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28595:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:28595:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:28601:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28601:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:28601:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:28606:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28606:30 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:28606:30 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:28614:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28614:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:28614:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:28620:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28620:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:28620:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:28625:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28625:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:28625:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:28631:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28631:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:28631:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:28636:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28636:30 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:28636:30 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:28644:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28644:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:28644:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:28650:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28650:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:28650:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:28655:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28655:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:28655:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:28661:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28661:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:28661:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:28666:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28666:30 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:28666:30 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:28674:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28674:42 error: no declaration found for element 'IfcProductDefinitionShape'
c:\esempioifcxml.xml:28674:42 error: attribute 'id' is not declared for element 'IfcProductDefinitionShape'
c:\esempioifcxml.xml:28679:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28679:26 error: no declaration found for element 'IfcWindow'
c:\esempioifcxml.xml:28679:26 error: attribute 'id' is not declared for element 'IfcWindow'
c:\esempioifcxml.xml:28694:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28694:35 error: no declaration found for element 'IfcRelFillsElement'
c:\esempioifcxml.xml:28694:35 error: attribute 'id' is not declared for element 'IfcRelFillsElement'
c:\esempioifcxml.xml:28706:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28706:42 error: no declaration found for element 'IfcWindowLiningProperties'
c:\esempioifcxml.xml:28706:42 error: attribute 'id' is not declared for element 'IfcWindowLiningProperties'
c:\esempioifcxml.xml:28714:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28714:41 error: no declaration found for element 'IfcWindowPanelProperties'
c:\esempioifcxml.xml:28714:41 error: attribute 'id' is not declared for element 'IfcWindowPanelProperties'
c:\esempioifcxml.xml:28722:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28722:41 error: no declaration found for element 'IfcWindowPanelProperties'
c:\esempioifcxml.xml:28722:41 error: attribute 'id' is not declared for element 'IfcWindowPanelProperties'
c:\esempioifcxml.xml:28730:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28730:41 error: no declaration found for element 'IfcWindowPanelProperties'
c:\esempioifcxml.xml:28730:41 error: attribute 'id' is not declared for element 'IfcWindowPanelProperties'
c:\esempioifcxml.xml:28738:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28738:31 error: no declaration found for element 'IfcWindowStyle'
c:\esempioifcxml.xml:28738:31 error: attribute 'id' is not declared for element 'IfcWindowStyle'
c:\esempioifcxml.xml:28755:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28755:36 error: no declaration found for element 'IfcRelDefinesByType'
c:\esempioifcxml.xml:28755:36 error: attribute 'id' is not declared for element 'IfcRelDefinesByType'
c:\esempioifcxml.xml:28768:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28768:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:28768:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:28774:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28774:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:28774:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:28780:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28780:28 error: no declaration found for element 'IfcPolyline'
c:\esempioifcxml.xml:28780:28 error: attribute 'id' is not declared for element 'IfcPolyline'
c:\esempioifcxml.xml:28786:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28786:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:28786:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:28792:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28792:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:28792:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:28798:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28798:28 error: no declaration found for element 'IfcPolyline'
c:\esempioifcxml.xml:28798:28 error: attribute 'id' is not declared for element 'IfcPolyline'
c:\esempioifcxml.xml:28804:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28804:43 error: no declaration found for element 'IfcConnectionCurveGeometry'
c:\esempioifcxml.xml:28804:43 error: attribute 'id' is not declared for element 'IfcConnectionCurveGeometry'
c:\esempioifcxml.xml:28812:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28812:43 error: no declaration found for element 'IfcRelConnectsPathElements'
c:\esempioifcxml.xml:28812:43 error: attribute 'id' is not declared for element 'IfcRelConnectsPathElements'
c:\esempioifcxml.xml:28831:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28831:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:28831:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:28837:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28837:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:28837:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:28843:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28843:28 error: no declaration found for element 'IfcPolyline'
c:\esempioifcxml.xml:28843:28 error: attribute 'id' is not declared for element 'IfcPolyline'
c:\esempioifcxml.xml:28849:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28849:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:28849:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:28855:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28855:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:28855:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:28861:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28861:28 error: no declaration found for element 'IfcPolyline'
c:\esempioifcxml.xml:28861:28 error: attribute 'id' is not declared for element 'IfcPolyline'
c:\esempioifcxml.xml:28867:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28867:43 error: no declaration found for element 'IfcConnectionCurveGeometry'
c:\esempioifcxml.xml:28867:43 error: attribute 'id' is not declared for element 'IfcConnectionCurveGeometry'
c:\esempioifcxml.xml:28875:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28875:43 error: no declaration found for element 'IfcRelConnectsPathElements'
c:\esempioifcxml.xml:28875:43 error: attribute 'id' is not declared for element 'IfcRelConnectsPathElements'
c:\esempioifcxml.xml:28894:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28894:33 error: no declaration found for element 'IfcMaterialLayer'
c:\esempioifcxml.xml:28894:33 error: attribute 'id' is not declared for element 'IfcMaterialLayer'
c:\esempioifcxml.xml:28901:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28901:36 error: no declaration found for element 'IfcMaterialLayerSet'
c:\esempioifcxml.xml:28901:36 error: attribute 'id' is not declared for element 'IfcMaterialLayerSet'
c:\esempioifcxml.xml:28907:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28907:41 error: no declaration found for element 'IfcMaterialLayerSetUsage'
c:\esempioifcxml.xml:28907:41 error: attribute 'id' is not declared for element 'IfcMaterialLayerSetUsage'
c:\esempioifcxml.xml:28915:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28915:29 error: no declaration found for element 'IfcDirection'
c:\esempioifcxml.xml:28915:29 error: attribute 'id' is not declared for element 'IfcDirection'
c:\esempioifcxml.xml:28922:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28922:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:28922:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:28929:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28929:36 error: no declaration found for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:28929:36 error: attribute 'id' is not declared for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:28940:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28940:34 error: no declaration found for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:28940:34 error: attribute 'id' is not declared for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:28948:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28948:36 error: no declaration found for element 'IfcWallStandardCase'
c:\esempioifcxml.xml:28948:36 error: attribute 'id' is not declared for element 'IfcWallStandardCase'
c:\esempioifcxml.xml:28966:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28966:41 error: no declaration found for element 'IfcRelAssociatesMaterial'
c:\esempioifcxml.xml:28966:41 error: attribute 'id' is not declared for element 'IfcRelAssociatesMaterial'
c:\esempioifcxml.xml:28978:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28978:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:28978:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:28984:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28984:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:28984:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:28990:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28990:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:28990:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:28996:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:28996:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:28996:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:29002:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29002:28 error: no declaration found for element 'IfcPolyline'
c:\esempioifcxml.xml:29002:28 error: attribute 'id' is not declared for element 'IfcPolyline'
c:\esempioifcxml.xml:29011:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29011:45 error: no declaration found for element 'IfcArbitraryClosedProfileDef'
c:\esempioifcxml.xml:29011:45 error: attribute 'id' is not declared for element 'IfcArbitraryClosedProfileDef'
c:\esempioifcxml.xml:29017:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29017:29 error: no declaration found for element 'IfcDirection'
c:\esempioifcxml.xml:29017:29 error: attribute 'id' is not declared for element 'IfcDirection'
c:\esempioifcxml.xml:29024:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29024:36 error: no declaration found for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:29024:36 error: attribute 'id' is not declared for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:29035:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29035:37 error: no declaration found for element 'IfcExtrudedAreaSolid'
c:\esempioifcxml.xml:29035:37 error: attribute 'id' is not declared for element 'IfcExtrudedAreaSolid'
c:\esempioifcxml.xml:29047:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29047:39 error: no declaration found for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:29047:39 error: attribute 'id' is not declared for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:29057:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29057:42 error: no declaration found for element 'IfcProductDefinitionShape'
c:\esempioifcxml.xml:29057:42 error: attribute 'id' is not declared for element 'IfcProductDefinitionShape'
c:\esempioifcxml.xml:29062:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29062:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:29062:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:29069:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29069:36 error: no declaration found for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:29069:36 error: attribute 'id' is not declared for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:29080:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29080:34 error: no declaration found for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:29080:34 error: attribute 'id' is not declared for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:29088:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29088:34 error: no declaration found for element 'IfcOpeningElement'
c:\esempioifcxml.xml:29088:34 error: attribute 'id' is not declared for element 'IfcOpeningElement'
c:\esempioifcxml.xml:29101:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29101:35 error: no declaration found for element 'IfcRelVoidsElement'
c:\esempioifcxml.xml:29101:35 error: attribute 'id' is not declared for element 'IfcRelVoidsElement'
c:\esempioifcxml.xml:29113:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29113:29 error: no declaration found for element 'IfcDirection'
c:\esempioifcxml.xml:29113:29 error: attribute 'id' is not declared for element 'IfcDirection'
c:\esempioifcxml.xml:29120:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29120:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:29120:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:29127:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29127:36 error: no declaration found for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:29127:36 error: attribute 'id' is not declared for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:29138:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29138:34 error: no declaration found for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:29138:34 error: attribute 'id' is not declared for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:29146:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29146:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:29146:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:29152:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29152:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:29152:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:29157:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29157:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:29157:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:29163:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29163:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:29163:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:29168:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29168:30 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:29168:30 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:29176:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29176:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:29176:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:29182:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29182:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:29182:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:29187:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29187:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:29187:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:29193:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29193:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:29193:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:29198:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29198:30 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:29198:30 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:29206:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29206:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:29206:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:29212:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29212:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:29212:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:29217:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29217:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:29217:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:29223:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29223:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:29223:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:29228:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29228:30 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:29228:30 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:29236:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29236:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:29236:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:29242:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29242:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:29242:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:29247:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29247:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:29247:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:29253:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29253:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:29253:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:29258:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29258:30 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:29258:30 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:29266:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29266:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:29266:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:29272:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29272:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:29272:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:29277:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29277:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:29277:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:29283:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29283:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:29283:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:29288:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29288:30 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:29288:30 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:29296:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29296:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:29296:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:29302:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29302:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:29302:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:29307:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29307:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:29307:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:29313:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29313:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:29313:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:29318:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29318:30 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:29318:30 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:29326:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29326:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:29326:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:29332:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29332:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:29332:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:29337:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29337:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:29337:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:29343:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29343:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:29343:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:29348:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29348:30 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:29348:30 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:29356:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29356:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:29356:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:29362:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29362:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:29362:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:29367:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29367:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:29367:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:29373:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29373:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:29373:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:29378:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29378:30 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:29378:30 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:29386:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29386:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:29386:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:29392:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29392:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:29392:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:29397:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29397:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:29397:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:29403:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29403:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:29403:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:29408:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29408:30 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:29408:30 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:29416:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29416:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:29416:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:29422:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29422:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:29422:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:29427:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29427:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:29427:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:29433:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29433:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:29433:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:29438:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29438:30 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:29438:30 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:29446:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29446:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:29446:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:29452:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29452:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:29452:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:29457:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29457:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:29457:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:29463:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29463:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:29463:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:29468:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29468:30 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:29468:30 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:29476:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29476:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:29476:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:29482:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29482:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:29482:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:29487:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29487:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:29487:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:29493:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29493:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:29493:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:29498:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29498:30 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:29498:30 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:29506:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29506:42 error: no declaration found for element 'IfcProductDefinitionShape'
c:\esempioifcxml.xml:29506:42 error: attribute 'id' is not declared for element 'IfcProductDefinitionShape'
c:\esempioifcxml.xml:29511:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29511:24 error: no declaration found for element 'IfcDoor'
c:\esempioifcxml.xml:29511:24 error: attribute 'id' is not declared for element 'IfcDoor'
c:\esempioifcxml.xml:29526:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29526:35 error: no declaration found for element 'IfcRelFillsElement'
c:\esempioifcxml.xml:29526:35 error: attribute 'id' is not declared for element 'IfcRelFillsElement'
c:\esempioifcxml.xml:29538:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29538:40 error: no declaration found for element 'IfcDoorLiningProperties'
c:\esempioifcxml.xml:29538:40 error: attribute 'id' is not declared for element 'IfcDoorLiningProperties'
c:\esempioifcxml.xml:29546:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29546:39 error: no declaration found for element 'IfcDoorPanelProperties'
c:\esempioifcxml.xml:29546:39 error: attribute 'id' is not declared for element 'IfcDoorPanelProperties'
c:\esempioifcxml.xml:29555:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29555:29 error: no declaration found for element 'IfcDoorStyle'
c:\esempioifcxml.xml:29555:29 error: attribute 'id' is not declared for element 'IfcDoorStyle'
c:\esempioifcxml.xml:29570:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29570:36 error: no declaration found for element 'IfcRelDefinesByType'
c:\esempioifcxml.xml:29570:36 error: attribute 'id' is not declared for element 'IfcRelDefinesByType'
c:\esempioifcxml.xml:29583:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29583:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:29583:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:29589:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29589:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:29589:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:29595:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29595:28 error: no declaration found for element 'IfcPolyline'
c:\esempioifcxml.xml:29595:28 error: attribute 'id' is not declared for element 'IfcPolyline'
c:\esempioifcxml.xml:29601:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29601:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:29601:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:29607:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29607:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:29607:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:29613:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29613:28 error: no declaration found for element 'IfcPolyline'
c:\esempioifcxml.xml:29613:28 error: attribute 'id' is not declared for element 'IfcPolyline'
c:\esempioifcxml.xml:29619:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29619:43 error: no declaration found for element 'IfcConnectionCurveGeometry'
c:\esempioifcxml.xml:29619:43 error: attribute 'id' is not declared for element 'IfcConnectionCurveGeometry'
c:\esempioifcxml.xml:29627:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29627:43 error: no declaration found for element 'IfcRelConnectsPathElements'
c:\esempioifcxml.xml:29627:43 error: attribute 'id' is not declared for element 'IfcRelConnectsPathElements'
c:\esempioifcxml.xml:29646:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29646:33 error: no declaration found for element 'IfcMaterialLayer'
c:\esempioifcxml.xml:29646:33 error: attribute 'id' is not declared for element 'IfcMaterialLayer'
c:\esempioifcxml.xml:29653:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29653:36 error: no declaration found for element 'IfcMaterialLayerSet'
c:\esempioifcxml.xml:29653:36 error: attribute 'id' is not declared for element 'IfcMaterialLayerSet'
c:\esempioifcxml.xml:29659:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29659:41 error: no declaration found for element 'IfcMaterialLayerSetUsage'
c:\esempioifcxml.xml:29659:41 error: attribute 'id' is not declared for element 'IfcMaterialLayerSetUsage'
c:\esempioifcxml.xml:29667:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29667:29 error: no declaration found for element 'IfcDirection'
c:\esempioifcxml.xml:29667:29 error: attribute 'id' is not declared for element 'IfcDirection'
c:\esempioifcxml.xml:29674:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29674:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:29674:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:29681:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29681:36 error: no declaration found for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:29681:36 error: attribute 'id' is not declared for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:29692:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29692:34 error: no declaration found for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:29692:34 error: attribute 'id' is not declared for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:29700:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29700:36 error: no declaration found for element 'IfcWallStandardCase'
c:\esempioifcxml.xml:29700:36 error: attribute 'id' is not declared for element 'IfcWallStandardCase'
c:\esempioifcxml.xml:29718:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29718:41 error: no declaration found for element 'IfcRelAssociatesMaterial'
c:\esempioifcxml.xml:29718:41 error: attribute 'id' is not declared for element 'IfcRelAssociatesMaterial'
c:\esempioifcxml.xml:29730:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29730:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:29730:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:29736:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29736:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:29736:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:29742:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29742:28 error: no declaration found for element 'IfcPolyline'
c:\esempioifcxml.xml:29742:28 error: attribute 'id' is not declared for element 'IfcPolyline'
c:\esempioifcxml.xml:29748:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29748:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:29748:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:29754:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29754:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:29754:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:29760:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29760:28 error: no declaration found for element 'IfcPolyline'
c:\esempioifcxml.xml:29760:28 error: attribute 'id' is not declared for element 'IfcPolyline'
c:\esempioifcxml.xml:29766:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29766:43 error: no declaration found for element 'IfcConnectionCurveGeometry'
c:\esempioifcxml.xml:29766:43 error: attribute 'id' is not declared for element 'IfcConnectionCurveGeometry'
c:\esempioifcxml.xml:29774:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29774:43 error: no declaration found for element 'IfcRelConnectsPathElements'
c:\esempioifcxml.xml:29774:43 error: attribute 'id' is not declared for element 'IfcRelConnectsPathElements'
c:\esempioifcxml.xml:29793:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29793:33 error: no declaration found for element 'IfcMaterialLayer'
c:\esempioifcxml.xml:29793:33 error: attribute 'id' is not declared for element 'IfcMaterialLayer'
c:\esempioifcxml.xml:29800:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29800:36 error: no declaration found for element 'IfcMaterialLayerSet'
c:\esempioifcxml.xml:29800:36 error: attribute 'id' is not declared for element 'IfcMaterialLayerSet'
c:\esempioifcxml.xml:29806:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29806:41 error: no declaration found for element 'IfcMaterialLayerSetUsage'
c:\esempioifcxml.xml:29806:41 error: attribute 'id' is not declared for element 'IfcMaterialLayerSetUsage'
c:\esempioifcxml.xml:29814:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29814:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:29814:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:29821:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29821:36 error: no declaration found for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:29821:36 error: attribute 'id' is not declared for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:29832:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29832:34 error: no declaration found for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:29832:34 error: attribute 'id' is not declared for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:29840:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29840:36 error: no declaration found for element 'IfcWallStandardCase'
c:\esempioifcxml.xml:29840:36 error: attribute 'id' is not declared for element 'IfcWallStandardCase'
c:\esempioifcxml.xml:29858:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29858:41 error: no declaration found for element 'IfcRelAssociatesMaterial'
c:\esempioifcxml.xml:29858:41 error: attribute 'id' is not declared for element 'IfcRelAssociatesMaterial'
c:\esempioifcxml.xml:29870:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29870:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:29870:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:29876:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29876:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:29876:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:29882:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29882:28 error: no declaration found for element 'IfcPolyline'
c:\esempioifcxml.xml:29882:28 error: attribute 'id' is not declared for element 'IfcPolyline'
c:\esempioifcxml.xml:29888:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29888:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:29888:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:29894:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29894:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:29894:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:29900:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29900:28 error: no declaration found for element 'IfcPolyline'
c:\esempioifcxml.xml:29900:28 error: attribute 'id' is not declared for element 'IfcPolyline'
c:\esempioifcxml.xml:29906:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29906:43 error: no declaration found for element 'IfcConnectionCurveGeometry'
c:\esempioifcxml.xml:29906:43 error: attribute 'id' is not declared for element 'IfcConnectionCurveGeometry'
c:\esempioifcxml.xml:29914:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29914:43 error: no declaration found for element 'IfcRelConnectsPathElements'
c:\esempioifcxml.xml:29914:43 error: attribute 'id' is not declared for element 'IfcRelConnectsPathElements'
c:\esempioifcxml.xml:29933:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29933:33 error: no declaration found for element 'IfcMaterialLayer'
c:\esempioifcxml.xml:29933:33 error: attribute 'id' is not declared for element 'IfcMaterialLayer'
c:\esempioifcxml.xml:29940:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29940:36 error: no declaration found for element 'IfcMaterialLayerSet'
c:\esempioifcxml.xml:29940:36 error: attribute 'id' is not declared for element 'IfcMaterialLayerSet'
c:\esempioifcxml.xml:29946:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29946:41 error: no declaration found for element 'IfcMaterialLayerSetUsage'
c:\esempioifcxml.xml:29946:41 error: attribute 'id' is not declared for element 'IfcMaterialLayerSetUsage'
c:\esempioifcxml.xml:29954:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29954:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:29954:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:29961:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29961:36 error: no declaration found for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:29961:36 error: attribute 'id' is not declared for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:29972:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29972:34 error: no declaration found for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:29972:34 error: attribute 'id' is not declared for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:29980:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29980:36 error: no declaration found for element 'IfcWallStandardCase'
c:\esempioifcxml.xml:29980:36 error: attribute 'id' is not declared for element 'IfcWallStandardCase'
c:\esempioifcxml.xml:29998:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:29998:41 error: no declaration found for element 'IfcRelAssociatesMaterial'
c:\esempioifcxml.xml:29998:41 error: attribute 'id' is not declared for element 'IfcRelAssociatesMaterial'
c:\esempioifcxml.xml:30010:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30010:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:30010:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:30016:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30016:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:30016:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:30022:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30022:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:30022:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:30028:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30028:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:30028:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:30034:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30034:28 error: no declaration found for element 'IfcPolyline'
c:\esempioifcxml.xml:30034:28 error: attribute 'id' is not declared for element 'IfcPolyline'
c:\esempioifcxml.xml:30043:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30043:45 error: no declaration found for element 'IfcArbitraryClosedProfileDef'
c:\esempioifcxml.xml:30043:45 error: attribute 'id' is not declared for element 'IfcArbitraryClosedProfileDef'
c:\esempioifcxml.xml:30049:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30049:29 error: no declaration found for element 'IfcDirection'
c:\esempioifcxml.xml:30049:29 error: attribute 'id' is not declared for element 'IfcDirection'
c:\esempioifcxml.xml:30056:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30056:36 error: no declaration found for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:30056:36 error: attribute 'id' is not declared for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:30067:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30067:37 error: no declaration found for element 'IfcExtrudedAreaSolid'
c:\esempioifcxml.xml:30067:37 error: attribute 'id' is not declared for element 'IfcExtrudedAreaSolid'
c:\esempioifcxml.xml:30079:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30079:39 error: no declaration found for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:30079:39 error: attribute 'id' is not declared for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:30089:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30089:42 error: no declaration found for element 'IfcProductDefinitionShape'
c:\esempioifcxml.xml:30089:42 error: attribute 'id' is not declared for element 'IfcProductDefinitionShape'
c:\esempioifcxml.xml:30094:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30094:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:30094:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:30101:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30101:36 error: no declaration found for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:30101:36 error: attribute 'id' is not declared for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:30112:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30112:34 error: no declaration found for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:30112:34 error: attribute 'id' is not declared for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:30120:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30120:34 error: no declaration found for element 'IfcOpeningElement'
c:\esempioifcxml.xml:30120:34 error: attribute 'id' is not declared for element 'IfcOpeningElement'
c:\esempioifcxml.xml:30133:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30133:35 error: no declaration found for element 'IfcRelVoidsElement'
c:\esempioifcxml.xml:30133:35 error: attribute 'id' is not declared for element 'IfcRelVoidsElement'
c:\esempioifcxml.xml:30145:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30145:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:30145:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:30152:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30152:36 error: no declaration found for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:30152:36 error: attribute 'id' is not declared for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:30163:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30163:34 error: no declaration found for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:30163:34 error: attribute 'id' is not declared for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:30171:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30171:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:30171:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:30177:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30177:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:30177:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:30182:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30182:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:30182:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:30188:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30188:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:30188:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:30193:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30193:30 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:30193:30 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:30201:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30201:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:30201:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:30207:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30207:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:30207:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:30212:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30212:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:30212:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:30218:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30218:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:30218:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:30223:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30223:30 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:30223:30 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:30231:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30231:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:30231:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:30237:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30237:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:30237:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:30242:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30242:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:30242:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:30248:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30248:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:30248:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:30253:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30253:30 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:30253:30 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:30261:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30261:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:30261:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:30267:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30267:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:30267:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:30272:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30272:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:30272:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:30278:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30278:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:30278:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:30283:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30283:30 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:30283:30 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:30291:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30291:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:30291:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:30297:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30297:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:30297:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:30302:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30302:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:30302:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:30308:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30308:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:30308:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:30313:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30313:30 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:30313:30 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:30321:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30321:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:30321:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:30327:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30327:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:30327:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:30332:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30332:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:30332:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:30338:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30338:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:30338:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:30343:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30343:30 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:30343:30 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:30351:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30351:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:30351:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:30357:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30357:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:30357:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:30362:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30362:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:30362:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:30368:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30368:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:30368:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:30373:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30373:30 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:30373:30 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:30381:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30381:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:30381:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:30387:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30387:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:30387:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:30392:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30392:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:30392:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:30398:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30398:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:30398:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:30403:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30403:30 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:30403:30 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:30411:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30411:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:30411:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:30417:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30417:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:30417:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:30422:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30422:32 error: no declaration found for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:30422:32 error: attribute 'id' is not declared for element 'IfcSurfaceStyle'
c:\esempioifcxml.xml:30428:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30428:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:30428:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:30433:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30433:30 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:30433:30 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:30441:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30441:42 error: no declaration found for element 'IfcProductDefinitionShape'
c:\esempioifcxml.xml:30441:42 error: attribute 'id' is not declared for element 'IfcProductDefinitionShape'
c:\esempioifcxml.xml:30446:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30446:24 error: no declaration found for element 'IfcDoor'
c:\esempioifcxml.xml:30446:24 error: attribute 'id' is not declared for element 'IfcDoor'
c:\esempioifcxml.xml:30461:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30461:35 error: no declaration found for element 'IfcRelFillsElement'
c:\esempioifcxml.xml:30461:35 error: attribute 'id' is not declared for element 'IfcRelFillsElement'
c:\esempioifcxml.xml:30473:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30473:40 error: no declaration found for element 'IfcDoorLiningProperties'
c:\esempioifcxml.xml:30473:40 error: attribute 'id' is not declared for element 'IfcDoorLiningProperties'
c:\esempioifcxml.xml:30481:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30481:39 error: no declaration found for element 'IfcDoorPanelProperties'
c:\esempioifcxml.xml:30481:39 error: attribute 'id' is not declared for element 'IfcDoorPanelProperties'
c:\esempioifcxml.xml:30490:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30490:29 error: no declaration found for element 'IfcDoorStyle'
c:\esempioifcxml.xml:30490:29 error: attribute 'id' is not declared for element 'IfcDoorStyle'
c:\esempioifcxml.xml:30505:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30505:36 error: no declaration found for element 'IfcRelDefinesByType'
c:\esempioifcxml.xml:30505:36 error: attribute 'id' is not declared for element 'IfcRelDefinesByType'
c:\esempioifcxml.xml:30518:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30518:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:30518:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:30524:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30524:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:30524:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:30530:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30530:28 error: no declaration found for element 'IfcPolyline'
c:\esempioifcxml.xml:30530:28 error: attribute 'id' is not declared for element 'IfcPolyline'
c:\esempioifcxml.xml:30536:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30536:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:30536:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:30542:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30542:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:30542:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:30548:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30548:28 error: no declaration found for element 'IfcPolyline'
c:\esempioifcxml.xml:30548:28 error: attribute 'id' is not declared for element 'IfcPolyline'
c:\esempioifcxml.xml:30554:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30554:43 error: no declaration found for element 'IfcConnectionCurveGeometry'
c:\esempioifcxml.xml:30554:43 error: attribute 'id' is not declared for element 'IfcConnectionCurveGeometry'
c:\esempioifcxml.xml:30562:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30562:43 error: no declaration found for element 'IfcRelConnectsPathElements'
c:\esempioifcxml.xml:30562:43 error: attribute 'id' is not declared for element 'IfcRelConnectsPathElements'
c:\esempioifcxml.xml:30581:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30581:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:30581:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:30587:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30587:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:30587:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:30593:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30593:28 error: no declaration found for element 'IfcPolyline'
c:\esempioifcxml.xml:30593:28 error: attribute 'id' is not declared for element 'IfcPolyline'
c:\esempioifcxml.xml:30599:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30599:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:30599:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:30605:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30605:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:30605:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:30611:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30611:28 error: no declaration found for element 'IfcPolyline'
c:\esempioifcxml.xml:30611:28 error: attribute 'id' is not declared for element 'IfcPolyline'
c:\esempioifcxml.xml:30617:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30617:43 error: no declaration found for element 'IfcConnectionCurveGeometry'
c:\esempioifcxml.xml:30617:43 error: attribute 'id' is not declared for element 'IfcConnectionCurveGeometry'
c:\esempioifcxml.xml:30625:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30625:43 error: no declaration found for element 'IfcRelConnectsPathElements'
c:\esempioifcxml.xml:30625:43 error: attribute 'id' is not declared for element 'IfcRelConnectsPathElements'
c:\esempioifcxml.xml:30644:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30644:24 error: no declaration found for element 'IfcSlab'
c:\esempioifcxml.xml:30644:24 error: attribute 'id' is not declared for element 'IfcSlab'
c:\esempioifcxml.xml:30686:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30686:39 error: no declaration found for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:30686:39 error: attribute 'id' is not declared for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:30774:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30774:36 error: no declaration found for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:30774:36 error: attribute 'id' is not declared for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:30785:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30785:28 error: no declaration found for element 'IfcMaterial'
c:\esempioifcxml.xml:30785:28 error: attribute 'id' is not declared for element 'IfcMaterial'
c:\esempioifcxml.xml:30788:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30788:29 error: no declaration found for element 'IfcColourRgb'
c:\esempioifcxml.xml:30788:29 error: attribute 'id' is not declared for element 'IfcColourRgb'
c:\esempioifcxml.xml:30793:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30793:41 error: no declaration found for element 'IfcCurveStyleFontPattern'
c:\esempioifcxml.xml:30793:41 error: attribute 'id' is not declared for element 'IfcCurveStyleFontPattern'
c:\esempioifcxml.xml:30797:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30797:34 error: no declaration found for element 'IfcCurveStyleFont'
c:\esempioifcxml.xml:30797:34 error: attribute 'id' is not declared for element 'IfcCurveStyleFont'
c:\esempioifcxml.xml:30803:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30803:30 error: no declaration found for element 'IfcCurveStyle'
c:\esempioifcxml.xml:30803:30 error: attribute 'id' is not declared for element 'IfcCurveStyle'
c:\esempioifcxml.xml:30808:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30808:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:30808:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:30813:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30813:30 error: no declaration found for element 'IfcCurveStyle'
c:\esempioifcxml.xml:30813:30 error: attribute 'id' is not declared for element 'IfcCurveStyle'
c:\esempioifcxml.xml:30822:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30822:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:30822:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:30828:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30828:41 error: no declaration found for element 'IfcFillAreaStyleHatching'
c:\esempioifcxml.xml:30828:41 error: attribute 'id' is not declared for element 'IfcFillAreaStyleHatching'
c:\esempioifcxml.xml:30840:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30840:29 error: no declaration found for element 'IfcColourRgb'
c:\esempioifcxml.xml:30840:29 error: attribute 'id' is not declared for element 'IfcColourRgb'
c:\esempioifcxml.xml:30845:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30845:41 error: no declaration found for element 'IfcCurveStyleFontPattern'
c:\esempioifcxml.xml:30845:41 error: attribute 'id' is not declared for element 'IfcCurveStyleFontPattern'
c:\esempioifcxml.xml:30849:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30849:34 error: no declaration found for element 'IfcCurveStyleFont'
c:\esempioifcxml.xml:30849:34 error: attribute 'id' is not declared for element 'IfcCurveStyleFont'
c:\esempioifcxml.xml:30855:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30855:30 error: no declaration found for element 'IfcCurveStyle'
c:\esempioifcxml.xml:30855:30 error: attribute 'id' is not declared for element 'IfcCurveStyle'
c:\esempioifcxml.xml:30860:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30860:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:30860:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:30865:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30865:30 error: no declaration found for element 'IfcCurveStyle'
c:\esempioifcxml.xml:30865:30 error: attribute 'id' is not declared for element 'IfcCurveStyle'
c:\esempioifcxml.xml:30874:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30874:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:30874:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:30880:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30880:41 error: no declaration found for element 'IfcFillAreaStyleHatching'
c:\esempioifcxml.xml:30880:41 error: attribute 'id' is not declared for element 'IfcFillAreaStyleHatching'
c:\esempioifcxml.xml:30892:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30892:29 error: no declaration found for element 'IfcColourRgb'
c:\esempioifcxml.xml:30892:29 error: attribute 'id' is not declared for element 'IfcColourRgb'
c:\esempioifcxml.xml:30897:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30897:41 error: no declaration found for element 'IfcCurveStyleFontPattern'
c:\esempioifcxml.xml:30897:41 error: attribute 'id' is not declared for element 'IfcCurveStyleFontPattern'
c:\esempioifcxml.xml:30901:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30901:34 error: no declaration found for element 'IfcCurveStyleFont'
c:\esempioifcxml.xml:30901:34 error: attribute 'id' is not declared for element 'IfcCurveStyleFont'
c:\esempioifcxml.xml:30907:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30907:30 error: no declaration found for element 'IfcCurveStyle'
c:\esempioifcxml.xml:30907:30 error: attribute 'id' is not declared for element 'IfcCurveStyle'
c:\esempioifcxml.xml:30912:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30912:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:30912:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:30917:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30917:30 error: no declaration found for element 'IfcCurveStyle'
c:\esempioifcxml.xml:30917:30 error: attribute 'id' is not declared for element 'IfcCurveStyle'
c:\esempioifcxml.xml:30926:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30926:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:30926:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:30932:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30932:41 error: no declaration found for element 'IfcFillAreaStyleHatching'
c:\esempioifcxml.xml:30932:41 error: attribute 'id' is not declared for element 'IfcFillAreaStyleHatching'
c:\esempioifcxml.xml:30944:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30944:29 error: no declaration found for element 'IfcColourRgb'
c:\esempioifcxml.xml:30944:29 error: attribute 'id' is not declared for element 'IfcColourRgb'
c:\esempioifcxml.xml:30949:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30949:41 error: no declaration found for element 'IfcCurveStyleFontPattern'
c:\esempioifcxml.xml:30949:41 error: attribute 'id' is not declared for element 'IfcCurveStyleFontPattern'
c:\esempioifcxml.xml:30953:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30953:34 error: no declaration found for element 'IfcCurveStyleFont'
c:\esempioifcxml.xml:30953:34 error: attribute 'id' is not declared for element 'IfcCurveStyleFont'
c:\esempioifcxml.xml:30959:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30959:30 error: no declaration found for element 'IfcCurveStyle'
c:\esempioifcxml.xml:30959:30 error: attribute 'id' is not declared for element 'IfcCurveStyle'
c:\esempioifcxml.xml:30964:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30964:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:30964:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:30969:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30969:30 error: no declaration found for element 'IfcCurveStyle'
c:\esempioifcxml.xml:30969:30 error: attribute 'id' is not declared for element 'IfcCurveStyle'
c:\esempioifcxml.xml:30978:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30978:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:30978:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:30984:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30984:41 error: no declaration found for element 'IfcFillAreaStyleHatching'
c:\esempioifcxml.xml:30984:41 error: attribute 'id' is not declared for element 'IfcFillAreaStyleHatching'
c:\esempioifcxml.xml:30996:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:30996:29 error: no declaration found for element 'IfcColourRgb'
c:\esempioifcxml.xml:30996:29 error: attribute 'id' is not declared for element 'IfcColourRgb'
c:\esempioifcxml.xml:31001:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31001:41 error: no declaration found for element 'IfcCurveStyleFontPattern'
c:\esempioifcxml.xml:31001:41 error: attribute 'id' is not declared for element 'IfcCurveStyleFontPattern'
c:\esempioifcxml.xml:31005:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31005:34 error: no declaration found for element 'IfcCurveStyleFont'
c:\esempioifcxml.xml:31005:34 error: attribute 'id' is not declared for element 'IfcCurveStyleFont'
c:\esempioifcxml.xml:31011:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31011:30 error: no declaration found for element 'IfcCurveStyle'
c:\esempioifcxml.xml:31011:30 error: attribute 'id' is not declared for element 'IfcCurveStyle'
c:\esempioifcxml.xml:31016:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31016:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:31016:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:31021:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31021:30 error: no declaration found for element 'IfcCurveStyle'
c:\esempioifcxml.xml:31021:30 error: attribute 'id' is not declared for element 'IfcCurveStyle'
c:\esempioifcxml.xml:31030:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31030:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:31030:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:31036:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31036:41 error: no declaration found for element 'IfcFillAreaStyleHatching'
c:\esempioifcxml.xml:31036:41 error: attribute 'id' is not declared for element 'IfcFillAreaStyleHatching'
c:\esempioifcxml.xml:31048:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31048:29 error: no declaration found for element 'IfcColourRgb'
c:\esempioifcxml.xml:31048:29 error: attribute 'id' is not declared for element 'IfcColourRgb'
c:\esempioifcxml.xml:31053:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31053:41 error: no declaration found for element 'IfcCurveStyleFontPattern'
c:\esempioifcxml.xml:31053:41 error: attribute 'id' is not declared for element 'IfcCurveStyleFontPattern'
c:\esempioifcxml.xml:31057:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31057:34 error: no declaration found for element 'IfcCurveStyleFont'
c:\esempioifcxml.xml:31057:34 error: attribute 'id' is not declared for element 'IfcCurveStyleFont'
c:\esempioifcxml.xml:31063:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31063:30 error: no declaration found for element 'IfcCurveStyle'
c:\esempioifcxml.xml:31063:30 error: attribute 'id' is not declared for element 'IfcCurveStyle'
c:\esempioifcxml.xml:31068:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31068:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:31068:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:31073:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31073:30 error: no declaration found for element 'IfcCurveStyle'
c:\esempioifcxml.xml:31073:30 error: attribute 'id' is not declared for element 'IfcCurveStyle'
c:\esempioifcxml.xml:31082:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31082:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:31082:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:31088:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31088:41 error: no declaration found for element 'IfcFillAreaStyleHatching'
c:\esempioifcxml.xml:31088:41 error: attribute 'id' is not declared for element 'IfcFillAreaStyleHatching'
c:\esempioifcxml.xml:31100:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31100:29 error: no declaration found for element 'IfcColourRgb'
c:\esempioifcxml.xml:31100:29 error: attribute 'id' is not declared for element 'IfcColourRgb'
c:\esempioifcxml.xml:31105:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31105:41 error: no declaration found for element 'IfcCurveStyleFontPattern'
c:\esempioifcxml.xml:31105:41 error: attribute 'id' is not declared for element 'IfcCurveStyleFontPattern'
c:\esempioifcxml.xml:31109:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31109:41 error: no declaration found for element 'IfcCurveStyleFontPattern'
c:\esempioifcxml.xml:31109:41 error: attribute 'id' is not declared for element 'IfcCurveStyleFontPattern'
c:\esempioifcxml.xml:31113:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31113:34 error: no declaration found for element 'IfcCurveStyleFont'
c:\esempioifcxml.xml:31113:34 error: attribute 'id' is not declared for element 'IfcCurveStyleFont'
c:\esempioifcxml.xml:31120:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31120:30 error: no declaration found for element 'IfcCurveStyle'
c:\esempioifcxml.xml:31120:30 error: attribute 'id' is not declared for element 'IfcCurveStyle'
c:\esempioifcxml.xml:31125:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31125:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:31125:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:31130:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31130:30 error: no declaration found for element 'IfcCurveStyle'
c:\esempioifcxml.xml:31130:30 error: attribute 'id' is not declared for element 'IfcCurveStyle'
c:\esempioifcxml.xml:31139:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31139:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:31139:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:31145:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31145:41 error: no declaration found for element 'IfcFillAreaStyleHatching'
c:\esempioifcxml.xml:31145:41 error: attribute 'id' is not declared for element 'IfcFillAreaStyleHatching'
c:\esempioifcxml.xml:31157:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31157:29 error: no declaration found for element 'IfcColourRgb'
c:\esempioifcxml.xml:31157:29 error: attribute 'id' is not declared for element 'IfcColourRgb'
c:\esempioifcxml.xml:31162:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31162:41 error: no declaration found for element 'IfcCurveStyleFontPattern'
c:\esempioifcxml.xml:31162:41 error: attribute 'id' is not declared for element 'IfcCurveStyleFontPattern'
c:\esempioifcxml.xml:31166:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31166:41 error: no declaration found for element 'IfcCurveStyleFontPattern'
c:\esempioifcxml.xml:31166:41 error: attribute 'id' is not declared for element 'IfcCurveStyleFontPattern'
c:\esempioifcxml.xml:31170:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31170:34 error: no declaration found for element 'IfcCurveStyleFont'
c:\esempioifcxml.xml:31170:34 error: attribute 'id' is not declared for element 'IfcCurveStyleFont'
c:\esempioifcxml.xml:31177:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31177:30 error: no declaration found for element 'IfcCurveStyle'
c:\esempioifcxml.xml:31177:30 error: attribute 'id' is not declared for element 'IfcCurveStyle'
c:\esempioifcxml.xml:31182:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31182:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:31182:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:31187:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31187:30 error: no declaration found for element 'IfcCurveStyle'
c:\esempioifcxml.xml:31187:30 error: attribute 'id' is not declared for element 'IfcCurveStyle'
c:\esempioifcxml.xml:31196:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31196:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:31196:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:31202:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31202:41 error: no declaration found for element 'IfcFillAreaStyleHatching'
c:\esempioifcxml.xml:31202:41 error: attribute 'id' is not declared for element 'IfcFillAreaStyleHatching'
c:\esempioifcxml.xml:31214:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31214:33 error: no declaration found for element 'IfcFillAreaStyle'
c:\esempioifcxml.xml:31214:33 error: attribute 'id' is not declared for element 'IfcFillAreaStyle'
c:\esempioifcxml.xml:31226:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31226:47 error: no declaration found for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:31226:47 error: attribute 'id' is not declared for element 'IfcPresentationStyleAssignment'
c:\esempioifcxml.xml:31231:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31231:30 error: no declaration found for element 'IfcStyledItem'
c:\esempioifcxml.xml:31231:30 error: attribute 'id' is not declared for element 'IfcStyledItem'
c:\esempioifcxml.xml:31236:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31236:40 error: no declaration found for element 'IfcStyledRepresentation'
c:\esempioifcxml.xml:31236:40 error: attribute 'id' is not declared for element 'IfcStyledRepresentation'
c:\esempioifcxml.xml:31244:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31244:52 error: no declaration found for element 'IfcMaterialDefinitionRepresentation'
c:\esempioifcxml.xml:31244:52 error: attribute 'id' is not declared for element 'IfcMaterialDefinitionRepresentation'
c:\esempioifcxml.xml:31252:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31252:33 error: no declaration found for element 'IfcMaterialLayer'
c:\esempioifcxml.xml:31252:33 error: attribute 'id' is not declared for element 'IfcMaterialLayer'
c:\esempioifcxml.xml:31259:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31259:36 error: no declaration found for element 'IfcMaterialLayerSet'
c:\esempioifcxml.xml:31259:36 error: attribute 'id' is not declared for element 'IfcMaterialLayerSet'
c:\esempioifcxml.xml:31265:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31265:41 error: no declaration found for element 'IfcMaterialLayerSetUsage'
c:\esempioifcxml.xml:31265:41 error: attribute 'id' is not declared for element 'IfcMaterialLayerSetUsage'
c:\esempioifcxml.xml:31273:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31273:41 error: no declaration found for element 'IfcRelAssociatesMaterial'
c:\esempioifcxml.xml:31273:41 error: attribute 'id' is not declared for element 'IfcRelAssociatesMaterial'
c:\esempioifcxml.xml:31285:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31285:47 error: no declaration found for element 'IfcPresentationLayerAssignment'
c:\esempioifcxml.xml:31285:47 error: attribute 'id' is not declared for element 'IfcPresentationLayerAssignment'
c:\esempioifcxml.xml:31291:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31291:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:31291:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:31297:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31297:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:31297:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:31303:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31303:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:31303:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:31309:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31309:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:31309:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:31315:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31315:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:31315:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:31321:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31321:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:31321:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:31327:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31327:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:31327:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:31333:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31333:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:31333:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:31339:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31339:28 error: no declaration found for element 'IfcPolyline'
c:\esempioifcxml.xml:31339:28 error: attribute 'id' is not declared for element 'IfcPolyline'
c:\esempioifcxml.xml:31352:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31352:45 error: no declaration found for element 'IfcArbitraryClosedProfileDef'
c:\esempioifcxml.xml:31352:45 error: attribute 'id' is not declared for element 'IfcArbitraryClosedProfileDef'
c:\esempioifcxml.xml:31358:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31358:36 error: no declaration found for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:31358:36 error: attribute 'id' is not declared for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:31369:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31369:37 error: no declaration found for element 'IfcExtrudedAreaSolid'
c:\esempioifcxml.xml:31369:37 error: attribute 'id' is not declared for element 'IfcExtrudedAreaSolid'
c:\esempioifcxml.xml:31381:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31381:39 error: no declaration found for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:31381:39 error: attribute 'id' is not declared for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:31391:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31391:42 error: no declaration found for element 'IfcProductDefinitionShape'
c:\esempioifcxml.xml:31391:42 error: attribute 'id' is not declared for element 'IfcProductDefinitionShape'
c:\esempioifcxml.xml:31396:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31396:29 error: no declaration found for element 'IfcDirection'
c:\esempioifcxml.xml:31396:29 error: attribute 'id' is not declared for element 'IfcDirection'
c:\esempioifcxml.xml:31403:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31403:34 error: no declaration found for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:31403:34 error: attribute 'id' is not declared for element 'IfcCartesianPoint'
c:\esempioifcxml.xml:31410:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31410:36 error: no declaration found for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:31410:36 error: attribute 'id' is not declared for element 'IfcAxis2Placement3D'
c:\esempioifcxml.xml:31421:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31421:34 error: no declaration found for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:31421:34 error: attribute 'id' is not declared for element 'IfcLocalPlacement'
c:\esempioifcxml.xml:31429:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31429:25 error: no declaration found for element 'IfcSpace'
c:\esempioifcxml.xml:31429:25 error: attribute 'id' is not declared for element 'IfcSpace'
c:\esempioifcxml.xml:31445:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31445:43 error: no declaration found for element 'IfcClassificationReference'
c:\esempioifcxml.xml:31445:43 error: attribute 'id' is not declared for element 'IfcClassificationReference'
c:\esempioifcxml.xml:31449:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31449:47 error: no declaration found for element 'IfcRelAssociatesClassification'
c:\esempioifcxml.xml:31449:47 error: attribute 'id' is not declared for element 'IfcRelAssociatesClassification'
c:\esempioifcxml.xml:31463:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31463:25 error: no declaration found for element 'IfcSpace'
c:\esempioifcxml.xml:31463:25 error: attribute 'id' is not declared for element 'IfcSpace'
c:\esempioifcxml.xml:31512:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31512:25 error: no declaration found for element 'IfcSpace'
c:\esempioifcxml.xml:31512:25 error: attribute 'id' is not declared for element 'IfcSpace'
c:\esempioifcxml.xml:31555:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31555:39 error: no declaration found for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:31555:39 error: attribute 'id' is not declared for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:31619:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31619:39 error: no declaration found for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:31619:39 error: attribute 'id' is not declared for element 'IfcShapeRepresentation'
c:\esempioifcxml.xml:31707:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31707:47 error: no declaration found for element 'IfcPresentationLayerAssignment'
c:\esempioifcxml.xml:31707:47 error: attribute 'id' is not declared for element 'IfcPresentationLayerAssignment'
c:\esempioifcxml.xml:31715:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31715:50 error: no declaration found for element 'IfcRelContainedInSpatialStructure'
c:\esempioifcxml.xml:31715:50 error: attribute 'id' is not declared for element 'IfcRelContainedInSpatialStructure'
c:\esempioifcxml.xml:31750:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31750:33 error: no declaration found for element 'IfcRelAggregates'
c:\esempioifcxml.xml:31750:33 error: attribute 'id' is not declared for element 'IfcRelAggregates'
c:\esempioifcxml.xml:31766:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31766:33 error: no declaration found for element 'IfcRelAggregates'
c:\esempioifcxml.xml:31766:33 error: attribute 'id' is not declared for element 'IfcRelAggregates'
c:\esempioifcxml.xml:31780:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31780:33 error: no declaration found for element 'IfcRelAggregates'
c:\esempioifcxml.xml:31780:33 error: attribute 'id' is not declared for element 'IfcRelAggregates'
c:\esempioifcxml.xml:31794:3 error: no character data is allowed by content model
c:\esempioifcxml.xml:31794:33 error: no declaration found for element 'IfcRelAggregates'
c:\esempioifcxml.xml:31794:33 error: attribute 'id' is not declared for element 'IfcRelAggregates'
c:\esempioifcxml.xml:31808:2 error: no character data is allowed by content model
c:\esempioifcxml.xml:31808:8 error: element 'IfcOrganization' is not allowed for content model 'EMPTY'
-------------- next part --------------
A non-text attachment was scrubbed...
Name: esempioifcxml.xml
Type: application/octet-stream
Size: 1215316 bytes
Desc: not available
Url : http://codesynthesis.com/pipermail/xsd-users/attachments/20110118/a661d41f/esempioifcxml-0001.obj


More information about the xsd-users mailing list