@bentley/open-site-schema 1.0.19-dev.1 → 1.0.19-dev.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1412,6 +1412,8 @@
1412
1412
  </Target>
1413
1413
  </ECRelationshipClass>
1414
1414
 
1415
+ <!--Surface Control-->
1416
+
1415
1417
  <ECEntityClass typeName="ISurfaceControl" modifier="Abstract" displayLabel="Surface Control" description="An interface that can be mixed-into a shaped area or layout area to indicate that it can be a surface control area.">
1416
1418
  <ECCustomAttributes>
1417
1419
  <IsMixin xmlns="CoreCustomAttributes.01.00.03">
@@ -1420,222 +1422,363 @@
1420
1422
  </ECCustomAttributes>
1421
1423
  </ECEntityClass>
1422
1424
 
1423
- <ECEntityClass typeName="ISurfaceControlObject" modifier="Abstract" displayLabel="Surface Control Object" description="An interface that represents a spatial entity that is processed into one or more control points for controlling a surface.">
1424
- <BaseClass>ISurfaceControlElement</BaseClass>
1425
-
1425
+ <ECEntityClass typeName="ISurfaceControlElement" description="An interface used to identify any entity that participates in surface control, usually a spatial object or a rule between objects with some logic." displayLabel="Surface Control Element" modifier="Abstract">
1426
1426
  <ECCustomAttributes>
1427
- <IsMixin xmlns="CoreCustomAttributes.01.00.03">
1428
- <AppliesToEntityClass>bis:SpatialElement</AppliesToEntityClass>
1427
+ <IsMixin xmlns="CoreCustomAttributes.01.00.04">
1428
+ <AppliesToEntityClass>bis:Element</AppliesToEntityClass>
1429
1429
  </IsMixin>
1430
1430
  </ECCustomAttributes>
1431
1431
  </ECEntityClass>
1432
1432
 
1433
- <ECEntityClass typeName="ISurfaceControlElement" modifier="Abstract" displayLabel="Surface Control Element" description="An interface used to identify any entity that participates in surface control.">
1433
+ <ECRelationshipClass typeName="SurfaceControlOwnsControlElement" modifier="Sealed" strength="embedding" strengthDirection="forward">
1434
+ <BaseClass>bis:ElementOwnsChildElements</BaseClass>
1435
+
1436
+ <Source multiplicity="(1..1)" roleLabel="owns" polymorphic="true">
1437
+ <Class class="ISurfaceControl"/>
1438
+ </Source>
1439
+ <Target multiplicity="(0..*)" roleLabel="is owned by" polymorphic="true">
1440
+ <Class class="ISurfaceControlElement"/>
1441
+ </Target>
1442
+ </ECRelationshipClass>
1443
+
1444
+ <ECRelationshipClass typeName="SurfaceControlElementOwnsControlElement" modifier="Abstract" strength="embedding" strengthDirection="forward">
1445
+ <BaseClass>bis:ElementOwnsChildElements</BaseClass>
1446
+
1447
+ <Source multiplicity="(0..1)" roleLabel="owns" polymorphic="true">
1448
+ <Class class="ISurfaceControlElement"/>
1449
+ </Source>
1450
+ <Target multiplicity="(0..*)" roleLabel="is owned by" polymorphic="true">
1451
+ <Class class="ISurfaceControlElement"/>
1452
+ </Target>
1453
+ </ECRelationshipClass>
1454
+
1455
+ <ECEntityClass typeName="SurfaceControlOptionsAspect" displayLabel="Surface Control Options" modifier="Sealed">
1456
+ <BaseClass>bis:ElementUniqueAspect</BaseClass>
1457
+
1458
+ <ECProperty propertyName="Resolution" typeName="double" description="Controls the spacing of the XY grid used when generating the triangulation for the interpolated surface." displayLabel="Resolution" category="SurfaceControl" kindOfQuantity="cvu:LENGTH"/>
1459
+ </ECEntityClass>
1460
+
1461
+ <ECRelationshipClass typeName="SurfaceControlOwnsOptionsAspect" modifier="Sealed" strength="embedding" strengthDirection="forward">
1462
+ <BaseClass>bis:ElementOwnsUniqueAspect</BaseClass>
1463
+
1464
+ <Source multiplicity="(1..1)" roleLabel="owns" polymorphic="true">
1465
+ <Class class="ISurfaceControl"/>
1466
+ </Source>
1467
+ <Target multiplicity="(0..1)" roleLabel="is owned by" polymorphic="false">
1468
+ <Class class="SurfaceControlOptionsAspect"/>
1469
+ </Target>
1470
+ </ECRelationshipClass>
1471
+
1472
+ <ECStructClass typeName="SurfaceControlStrokeOptions" description="Specifies stroking options for a linear element." modifier="Sealed">
1473
+ <ECProperty propertyName="IsBreakline" typeName="boolean" description="Indicates whether the stroke is a breakline." displayLabel="Is Breakline" category="SurfaceControl"/>
1474
+ <ECProperty propertyName="EmitControlPoints" typeName="boolean" description="Indicates whether the stroke operation emit intermediate control points." displayLabel="Emit Control Points" category="SurfaceControl"/>
1475
+ <ECProperty propertyName="ControlPointTypeSource" typeName="IntermediatePointType" description="Specifies the source to derive the intermediate control point type from." displayLabel="Control Point Type Source" category="SurfaceControl"/>
1476
+ </ECStructClass>
1477
+
1478
+ <!--Surface Control Objects-->
1479
+
1480
+ <ECEntityClass typeName="ISurfaceControlObject" description="An interface that represents a spatial entity that is processed into one or more control points for controlling a surface." displayLabel="Surface Control Object" modifier="Abstract">
1481
+ <BaseClass>ISurfaceControlElement</BaseClass>
1482
+
1434
1483
  <ECCustomAttributes>
1435
- <IsMixin xmlns="CoreCustomAttributes.01.00.03">
1436
- <AppliesToEntityClass>bis:Element</AppliesToEntityClass>
1484
+ <IsMixin xmlns="CoreCustomAttributes.01.00.04">
1485
+ <AppliesToEntityClass>bis:SpatialElement</AppliesToEntityClass>
1437
1486
  </IsMixin>
1438
1487
  </ECCustomAttributes>
1439
1488
  </ECEntityClass>
1440
1489
 
1441
- <ECEntityClass typeName="SurfaceControlVertex" modifier="None" displayLabel="Control Vertex" description="A 3D point on a surface whose elevation is used in spatial interpolation with other control points.">
1490
+ <ECEntityClass typeName="BaseSurfaceControlVertex" description="A vertex that can directly or indirectly influence a surface." displayLabel="Base Control Vertex" modifier="Abstract">
1442
1491
  <BaseClass>Vertex</BaseClass>
1443
1492
  <BaseClass>ISurfaceControlObject</BaseClass>
1493
+ </ECEntityClass>
1494
+
1495
+ <ECEntityClass typeName="SurfaceControlVertex" description="A vertex that emits a 3D control point that influences a surface via spatial interpolation." displayLabel="Control Vertex">
1496
+ <BaseClass>BaseSurfaceControlVertex</BaseClass>
1497
+
1498
+ <ECProperty propertyName="VertexType" typeName="SurfaceControlVertexType" description="Specifies the type of control vertex used." displayLabel="Control Vertex Type" category="SurfaceControl"/>
1499
+ <ECProperty propertyName="Slope" typeName="double" description="Slope of the line emanating from this vertex position." displayLabel="Slope" category="SurfaceControl" kindOfQuantity="cvu:SLOPE"/>
1500
+ <ECProperty propertyName="MinSlope" typeName="double" description="Minimum slope constraint." displayLabel="Min. Slope" category="SurfaceControl" kindOfQuantity="cvu:SLOPE"/>
1501
+ <ECProperty propertyName="MaxSlope" typeName="double" description="Maximum slope constraint." displayLabel="Max. Slope" category="SurfaceControl" kindOfQuantity="cvu:SLOPE"/>
1502
+ <ECProperty propertyName="Direction" typeName="point2d" description="Direction of the line emanating from this vertex position that constrains the elevation interpolation." displayLabel="Direction" category="SurfaceControl"/>
1503
+ <ECProperty propertyName="Mirrored" typeName="boolean" description="True if the direction constraint should represent two lines emanating from the position, forming a V shape, or false if it should be a single line passing through the position." displayLabel="Mirrored" category="SurfaceControl"/>
1504
+ <ECProperty propertyName="ClampDistance" typeName="double" description="Distance at which to clamp slope calculations, turning elevation into a piecewise function where it stays constant beyond this distance." displayLabel="Clamp Distance" category="SurfaceControl" kindOfQuantity="cvu:LENGTH"/>
1505
+ </ECEntityClass>
1506
+
1507
+ <ECEntityClass typeName="SurfaceControlPathVertex" description="A vertex that forms a control path, which emits control points along the path." displayLabel="Surface Control Path Vertex">
1508
+ <BaseClass>BaseSurfaceControlVertex</BaseClass>
1509
+
1510
+ <ECProperty propertyName="Radius" typeName="double" description="Optional radius to insert a fillet arc between the two edges that meet at the vertex." category="SurfaceControl" kindOfQuantity="cvu:LENGTH"/>
1511
+ </ECEntityClass>
1512
+
1513
+ <ECEntityClass typeName="SurfaceControlPathEdge" description="An edge between two vertices in a surface control path." displayLabel="Surface Control Path Edge">
1514
+ <BaseClass>bis:SpatialLocationElement</BaseClass>
1515
+ <BaseClass>ISurfaceControlObject</BaseClass>
1516
+
1517
+ <ECProperty propertyName="Order" typeName="int">
1518
+ <ECCustomAttributes>
1519
+ <HiddenProperty xmlns="CoreCustomAttributes.01.00.04"/>
1520
+ </ECCustomAttributes>
1521
+ </ECProperty>
1522
+
1523
+ <ECNavigationProperty propertyName="StartVertex" relationshipName="SurfaceControlPathEdgeStartsAtVertex" direction="forward"/>
1524
+ <ECNavigationProperty propertyName="EndVertex" relationshipName="SurfaceControlPathEdgeEndsAtVertex" direction="forward"/>
1525
+ </ECEntityClass>
1526
+
1527
+ <ECRelationshipClass typeName="SurfaceControlPathEdgeStartsAtVertex" modifier="Sealed" strength="referencing" strengthDirection="forward">
1528
+ <Source multiplicity="(1..*)" roleLabel="starts at" polymorphic="true">
1529
+ <Class class="SurfaceControlPathEdge"/>
1530
+ </Source>
1531
+ <Target multiplicity="(1..1)" roleLabel="connects to" polymorphic="true">
1532
+ <Class class="SurfaceControlPathVertex"/>
1533
+ </Target>
1534
+ </ECRelationshipClass>
1535
+
1536
+ <ECRelationshipClass typeName="SurfaceControlPathEdgeEndsAtVertex" modifier="Sealed" strength="referencing" strengthDirection="forward">
1537
+ <Source multiplicity="(1..*)" roleLabel="ends at" polymorphic="true">
1538
+ <Class class="SurfaceControlPathEdge"/>
1539
+ </Source>
1540
+ <Target multiplicity="(1..1)" roleLabel="connects to" polymorphic="true">
1541
+ <Class class="SurfaceControlPathVertex"/>
1542
+ </Target>
1543
+ </ECRelationshipClass>
1544
+
1545
+ <ECEntityClass typeName="SurfaceControlPath" description="A path that emits 3D control points that influences a surface via spatial interpolation." displayLabel="Surface Control Path">
1546
+ <BaseClass>bis:SpatialLocationElement</BaseClass>
1547
+ <BaseClass>bis:IParentElement</BaseClass>
1548
+ <BaseClass>ISurfaceControlObject</BaseClass>
1444
1549
 
1445
- <ECProperty propertyName="VertexType" typeName="SurfaceControlVertexType" category="SurfaceControl" displayLabel="Control Vertex Type" description="Specifies the type of control vertex used." />
1446
- <ECProperty propertyName="Slope" typeName="double" category="SurfaceControl" kindOfQuantity="cvu:SLOPE" displayLabel="Slope" description="Slope of the line emanating from this vertex position." />
1447
- <ECProperty propertyName="MinSlope" typeName="double" category="SurfaceControl" kindOfQuantity="cvu:SLOPE" displayLabel="Min. Slope" description="Minimum slope constraint." />
1448
- <ECProperty propertyName="MaxSlope" typeName="double" category="SurfaceControl" kindOfQuantity="cvu:SLOPE" displayLabel="Max. Slope" description="Maximum slope constraint." />
1449
- <ECProperty propertyName="Direction" typeName="Point2d" category="SurfaceControl" displayLabel="Direction" description="Direction of the line emanating from this vertex position that constrains the elevation interpolation."/>
1450
- <ECProperty propertyName="Mirrored" typeName="boolean" category="SurfaceControl" displayLabel="Mirrored" description="True if the direction constraint should represent two lines emanating from the position, forming a V shape, or false if it should be a single line passing through the position."/>
1550
+ <ECStructProperty propertyName="StrokeOptions" typeName="SurfaceControlStrokeOptions" description="Specifies stroke options for adding points along the path." displayLabel="Stroke Options" category="SurfaceControl"/>
1451
1551
  </ECEntityClass>
1452
1552
 
1453
- <ECEntityClass typeName="SurfaceControlRule" modifier="Abstract" description="Represents a rule that has update logic between one or more elements.">
1553
+ <ECRelationshipClass typeName="SurfaceControlPathOwnsVertices" modifier="Sealed" strength="embedding" strengthDirection="forward">
1554
+ <BaseClass>SurfaceControlElementOwnsControlElement</BaseClass>
1555
+
1556
+ <Source multiplicity="(1..1)" roleLabel="owns" polymorphic="true">
1557
+ <Class class="SurfaceControlPath"/>
1558
+ </Source>
1559
+ <Target multiplicity="(2..*)" roleLabel="is owned by" polymorphic="true">
1560
+ <Class class="SurfaceControlPathVertex"/>
1561
+ </Target>
1562
+ </ECRelationshipClass>
1563
+
1564
+ <ECRelationshipClass typeName="SurfaceControlPathOwnsEdges" modifier="Sealed" strength="embedding" strengthDirection="forward">
1565
+ <BaseClass>SurfaceControlElementOwnsControlElement</BaseClass>
1566
+
1567
+ <Source multiplicity="(1..1)" roleLabel="owns" polymorphic="true">
1568
+ <Class class="SurfaceControlPath"/>
1569
+ </Source>
1570
+ <Target multiplicity="(1..*)" roleLabel="is owned by" polymorphic="true">
1571
+ <Class class="SurfaceControlPathEdge"/>
1572
+ </Target>
1573
+ </ECRelationshipClass>
1574
+
1575
+ <!--Surface Control Rules-->
1576
+
1577
+ <ECEntityClass typeName="SurfaceControlRule" description="Represents a rule that has update logic between one or more elements." modifier="Abstract">
1454
1578
  <BaseClass>bis:InformationRecordElement</BaseClass>
1455
1579
  <BaseClass>ISurfaceControlElement</BaseClass>
1456
1580
  </ECEntityClass>
1457
1581
 
1458
- <ECStructClass typeName="SurfaceControlStrokeOptions" description="Specifies stroking options for a linear element." modifier="Sealed">
1459
- <ECProperty propertyName="IsBreakline" typeName="boolean" category="SurfaceControl" displayLabel="Is Breakline" description="Indicates whether the stroke is a breakline."/>
1460
- <ECProperty propertyName="EmitControlPoints" typeName="boolean" category="SurfaceControl" displayLabel="Emit Control Points" description="Indicates whether the stroke operation emit intermediate control points." />
1461
- <ECProperty propertyName="ControlPointTypeSource" typeName="IntermediatePointType" category="SurfaceControl" displayLabel="Control Point Type Source" description="Specifies the source to derive the intermediate control point type from."/>
1462
- </ECStructClass>
1463
-
1464
- <ECEntityClass typeName="SurfaceControlVertexRule" modifier="Abstract" description="A ruled constraint between two surface control vertices.">
1582
+ <ECEntityClass typeName="SurfaceControlVertexRule" description="A ruled constraint between two surface control vertices." modifier="Abstract">
1465
1583
  <BaseClass>SurfaceControlRule</BaseClass>
1466
1584
 
1467
- <ECNavigationProperty propertyName="StartVertex" relationshipName="SurfaceControlVertexRuleStartsAtVertex" direction="Forward" />
1468
- <ECNavigationProperty propertyName="EndVertex" relationshipName="SurfaceControlVertexRuleEndsAtVertex" direction="Forward" />
1469
- <ECStructProperty propertyName="StrokeOptions" typeName="SurfaceControlStrokeOptions" displayLabel="Stroke Options" description="Specifies stroke options for adding points along the path." />
1585
+ <ECNavigationProperty propertyName="StartVertex" relationshipName="SurfaceControlVertexRuleStartsAtVertex" direction="forward"/>
1586
+ <ECNavigationProperty propertyName="EndVertex" relationshipName="SurfaceControlVertexRuleEndsAtVertex" direction="forward"/>
1587
+ <ECStructProperty propertyName="StrokeOptions" typeName="SurfaceControlStrokeOptions" description="Specifies stroke options for adding points along the path." displayLabel="Stroke Options" category="SurfaceControl"/>
1470
1588
  </ECEntityClass>
1471
1589
 
1472
- <ECRelationshipClass typeName="SurfaceControlVertexRuleStartsAtVertex" strength="referencing" modifier="Sealed">
1590
+ <ECRelationshipClass typeName="SurfaceControlVertexRuleStartsAtVertex" modifier="Sealed" strength="referencing" strengthDirection="forward">
1473
1591
  <Source multiplicity="(0..*)" roleLabel="starts at" polymorphic="true">
1474
- <Class class="SurfaceControlVertexRule" />
1592
+ <Class class="SurfaceControlVertexRule"/>
1475
1593
  </Source>
1476
1594
  <Target multiplicity="(1..1)" roleLabel="connects to" polymorphic="true">
1477
- <Class class="SurfaceControlVertex" />
1595
+ <Class class="BaseSurfaceControlVertex"/>
1478
1596
  </Target>
1479
1597
  </ECRelationshipClass>
1480
1598
 
1481
- <ECRelationshipClass typeName="SurfaceControlVertexRuleEndsAtVertex" strength="referencing" modifier="Sealed">
1599
+ <ECRelationshipClass typeName="SurfaceControlVertexRuleEndsAtVertex" modifier="Sealed" strength="referencing" strengthDirection="forward">
1482
1600
  <Source multiplicity="(0..*)" roleLabel="ends at" polymorphic="true">
1483
- <Class class="SurfaceControlVertexRule" />
1601
+ <Class class="SurfaceControlVertexRule"/>
1484
1602
  </Source>
1485
1603
  <Target multiplicity="(1..1)" roleLabel="connects to" polymorphic="true">
1486
- <Class class="SurfaceControlVertex" />
1604
+ <Class class="BaseSurfaceControlVertex"/>
1487
1605
  </Target>
1488
1606
  </ECRelationshipClass>
1489
1607
 
1490
- <ECEntityClass typeName="SurfaceControlVertexDeltaRule" modifier="Sealed" displayLabel="Surface Control Vertex Delta Rule" description="Constrains two surface control vertices to have a constant elevation difference between each other.">
1608
+ <ECEntityClass typeName="SurfaceControlVertexDeltaRule" description="Constrains two surface control vertices to have a constant elevation difference between each other." displayLabel="Surface Control Vertex Delta Rule" modifier="Sealed">
1491
1609
  <BaseClass>SurfaceControlVertexRule</BaseClass>
1492
1610
 
1493
- <ECProperty propertyName="ControlVertexDelta" typeName="double" category="SurfaceControl" kindOfQuantity="cvu:LENGTH" displayLabel="Delta" description="Delta defined by a control vertex override." />
1611
+ <ECProperty propertyName="ControlVertexDelta" typeName="double" description="Delta defined by a control vertex override." displayLabel="Delta" category="SurfaceControl" kindOfQuantity="cvu:LENGTH"/>
1494
1612
  </ECEntityClass>
1495
1613
 
1496
- <ECEntityClass typeName="SurfaceControlVertexSlopeRule" modifier="Sealed" displayLabel="Surface Control Vertex Slope Rule" description="Constrains two surface control vertices to lie on the same line defined by the slope between them.">
1614
+ <ECEntityClass typeName="SurfaceControlVertexSlopeRule" description="Constrains two surface control vertices to lie on the same line defined by the slope between them." displayLabel="Surface Control Vertex Slope Rule" modifier="Sealed">
1497
1615
  <BaseClass>SurfaceControlVertexRule</BaseClass>
1498
1616
 
1499
- <ECProperty propertyName="ControlVertexSlope" typeName="double" category="SurfaceControl" kindOfQuantity="cvu:SLOPE" displayLabel="Slope" description="Slope defined by a control vertex override." />
1617
+ <ECProperty propertyName="ControlVertexSlope" typeName="double" description="Slope defined by a control vertex override." displayLabel="Slope" category="SurfaceControl" kindOfQuantity="cvu:SLOPE"/>
1500
1618
  </ECEntityClass>
1501
1619
 
1502
- <ECEntityClass typeName="SurfaceControlLowPoint" modifier="Sealed" displayLabel="Control Low Point" description="Defines a location point which controls low point control object.">
1620
+ <ECEntityClass typeName="SurfaceControlDitchRule" description="Models a ditch-like parametric template that is applied to a control path." displayLabel="Surface Control Ditch Rule" modifier="Sealed" >
1621
+ <BaseClass>SurfaceControlRule</BaseClass>
1622
+
1623
+ <ECProperty propertyName="Interval" typeName="double" description="Drop interval along the path." category="SurfaceControl" kindOfQuantity="cvu:LENGTH"/>
1624
+ <ECProperty propertyName="Slope" typeName="double" description="Slope of the line emanating from this vertex position." category="SurfaceControl" kindOfQuantity="cvu:SLOPE"/>
1625
+ <ECProperty propertyName="Offset" typeName="double" description="Offset from the path to attenuate the influence of the ditch." category="SurfaceControl" kindOfQuantity="cvu:LENGTH"/>
1626
+ <ECNavigationProperty propertyName="Path" relationshipName="SurfaceControlDitchRuleReplacesSurfaceInputs" direction="forward"/>
1627
+ </ECEntityClass>
1628
+
1629
+ <ECRelationshipClass typeName="SurfaceControlDitchRuleReplacesSurfaceInputs" description="The rule emits surface inputs instead of the Path." modifier="Sealed" strength="referencing" strengthDirection="forward">
1630
+ <Source multiplicity="(0..*)" roleLabel="emits surface inputs" polymorphic="true">
1631
+ <Class class="SurfaceControlDitchRule"/>
1632
+ </Source>
1633
+ <Target multiplicity="(1..1)" roleLabel="suspends surface inputs" polymorphic="true">
1634
+ <Class class="SurfaceControlPath"/>
1635
+ </Target>
1636
+ </ECRelationshipClass>
1637
+
1638
+ <!--Deprecated Surface Control-->
1639
+
1640
+ <ECEntityClass typeName="SurfaceControlLowPoint" description="Defines a location point which controls low point control object." displayLabel="Control Low Point" modifier="Sealed">
1503
1641
  <BaseClass>SurfaceControlVertex</BaseClass>
1642
+
1504
1643
  <ECCustomAttributes>
1505
- <Deprecated xmlns="CoreCustomAttributes.01.00.03">
1644
+ <Deprecated xmlns="CoreCustomAttributes.01.00.04">
1506
1645
  <Description>SurfaceControlLowPoint is no longer used for surface control, use SurfaceSlopedControlVertex instead.</Description>
1507
1646
  </Deprecated>
1508
1647
  </ECCustomAttributes>
1509
- <ECProperty propertyName="ControlSlope" typeName="double" category="SurfaceControl" kindOfQuantity="cvu:SLOPE" displayLabel="Slope" description="Slope defined by a control low point override." />
1510
- <ECProperty propertyName="MaximumControlRadius" typeName="double" category="SurfaceControl" kindOfQuantity="cvu:LENGTH" displayLabel="Radius" description="Max radius defined by a control low point override." />
1648
+ <ECProperty propertyName="ControlSlope" typeName="double" description="Slope defined by a control low point override." displayLabel="Slope" category="SurfaceControl" kindOfQuantity="cvu:SLOPE"/>
1649
+ <ECProperty propertyName="MaximumControlRadius" typeName="double" description="Max radius defined by a control low point override." displayLabel="Radius" category="SurfaceControl" kindOfQuantity="cvu:LENGTH"/>
1511
1650
  </ECEntityClass>
1512
1651
 
1513
- <ECEntityClass typeName="SurfaceControlLowPointRule" modifier="Sealed" displayLabel="Surface Control Low Point Rule" description="Surface control low point rule.">
1652
+ <ECEntityClass typeName="SurfaceControlLowPointRule" description="Surface control low point rule." displayLabel="Surface Control Low Point Rule" modifier="Sealed">
1514
1653
  <BaseClass>SurfaceControlRule</BaseClass>
1654
+
1515
1655
  <ECCustomAttributes>
1516
- <Deprecated xmlns="CoreCustomAttributes.01.00.03">
1656
+ <Deprecated xmlns="CoreCustomAttributes.01.00.04">
1517
1657
  <Description>SurfaceControlLowPointRule is no longer used for surface control, use SurfaceSlopedControlVertex instead.</Description>
1518
1658
  </Deprecated>
1519
1659
  </ECCustomAttributes>
1520
1660
  </ECEntityClass>
1521
1661
 
1522
- <ECRelationshipClass typeName="SurfaceControlLowPointRuleGroupsVertices" strength="referencing" strengthDirection="Forward" modifier="Sealed">
1662
+ <ECRelationshipClass typeName="SurfaceControlLowPointRuleGroupsVertices" modifier="Sealed" strength="referencing" strengthDirection="forward">
1523
1663
  <BaseClass>bis:ElementGroupsMembers</BaseClass>
1664
+
1524
1665
  <ECCustomAttributes>
1525
- <Deprecated xmlns="CoreCustomAttributes.01.00.03">
1666
+ <Deprecated xmlns="CoreCustomAttributes.01.00.04">
1526
1667
  <Description>SurfaceControlLowPointRuleGroupsVertices is no longer used for surface control.</Description>
1527
1668
  </Deprecated>
1528
1669
  </ECCustomAttributes>
1529
1670
  <Source multiplicity="(0..*)" roleLabel="groups" polymorphic="false">
1530
- <Class class="SurfaceControlLowPointRule" />
1671
+ <Class class="SurfaceControlLowPointRule"/>
1531
1672
  </Source>
1532
1673
  <Target multiplicity="(0..*)" roleLabel="is grouped in" polymorphic="false">
1533
- <Class class="SurfaceControlLowPoint" />
1674
+ <Class class="SurfaceControlLowPoint"/>
1534
1675
  </Target>
1535
1676
  </ECRelationshipClass>
1536
1677
 
1537
- <ECRelationshipClass typeName="SurfaceControlOwnsRules" strength="embedding" strengthDirection="Forward" modifier="Sealed">
1678
+ <ECRelationshipClass typeName="SurfaceControlOwnsRules" modifier="Sealed" strength="embedding" strengthDirection="forward">
1538
1679
  <BaseClass>bis:ElementOwnsChildElements</BaseClass>
1680
+
1539
1681
  <ECCustomAttributes>
1540
- <Deprecated xmlns="CoreCustomAttributes.01.00.03">
1682
+ <Deprecated xmlns="CoreCustomAttributes.01.00.04">
1541
1683
  <Description>SurfaceControlOwnsRules is no longer used for surface control, use SurfaceControlOwnsControlElement instead.</Description>
1542
1684
  </Deprecated>
1543
1685
  </ECCustomAttributes>
1544
1686
  <Source multiplicity="(1..1)" roleLabel="owns" polymorphic="true">
1545
- <Class class="ISurfaceControl" />
1687
+ <Class class="ISurfaceControl"/>
1546
1688
  </Source>
1547
1689
  <Target multiplicity="(0..*)" roleLabel="is owned by" polymorphic="true">
1548
- <Class class="SurfaceControlRule" />
1690
+ <Class class="SurfaceControlRule"/>
1549
1691
  </Target>
1550
1692
  </ECRelationshipClass>
1551
1693
 
1552
- <ECRelationshipClass typeName="SurfaceControlOwnsVertices" strength="embedding" strengthDirection="Forward" modifier="Sealed">
1694
+ <ECRelationshipClass typeName="SurfaceControlOwnsVertices" modifier="Sealed" strength="embedding" strengthDirection="forward">
1553
1695
  <BaseClass>bis:ElementOwnsChildElements</BaseClass>
1696
+
1554
1697
  <ECCustomAttributes>
1555
- <Deprecated xmlns="CoreCustomAttributes.01.00.03">
1698
+ <Deprecated xmlns="CoreCustomAttributes.01.00.04">
1556
1699
  <Description>SurfaceControlOwnsVertices is no longer used for surface control, use SurfaceControlOwnsControlElement instead.</Description>
1557
1700
  </Deprecated>
1558
1701
  </ECCustomAttributes>
1559
1702
  <Source multiplicity="(1..1)" roleLabel="owns" polymorphic="true">
1560
- <Class class="ISurfaceControl" />
1703
+ <Class class="ISurfaceControl"/>
1561
1704
  </Source>
1562
1705
  <Target multiplicity="(0..*)" roleLabel="is owned by" polymorphic="true">
1563
- <Class class="SurfaceControlVertex" />
1706
+ <Class class="SurfaceControlVertex"/>
1564
1707
  </Target>
1565
1708
  </ECRelationshipClass>
1566
1709
 
1567
- <ECRelationshipClass typeName="SurfaceControlOwnsControlElement" strength="embedding" strengthDirection="Forward" modifier="Sealed">
1568
- <BaseClass>bis:ElementOwnsChildElements</BaseClass>
1569
- <Source multiplicity="(1..1)" roleLabel="owns" polymorphic="true">
1570
- <Class class="ISurfaceControl" />
1571
- </Source>
1572
- <Target multiplicity="(0..*)" roleLabel="is owned by" polymorphic="true">
1573
- <Class class="ISurfaceControlElement" />
1574
- </Target>
1575
- </ECRelationshipClass>
1576
-
1577
- <ECEntityClass typeName="SurfaceControlOptionsAspect" modifier="Sealed" displayLabel="Surface Control Options">
1578
- <BaseClass>bis:ElementUniqueAspect</BaseClass>
1579
-
1580
- <ECProperty propertyName="Resolution" typeName="double" kindOfQuantity="cvu:LENGTH" category="SurfaceControl" displayLabel="Resolution" description="Controls the spacing of the XY grid used when generating the triangulation for the interpolated surface." />
1581
- </ECEntityClass>
1582
-
1583
- <ECRelationshipClass typeName="SurfaceControlOwnsOptionsAspect" modifier="Sealed" strength="embedding">
1584
- <BaseClass>bis:ElementOwnsUniqueAspect</BaseClass>
1585
- <Source multiplicity="(1..1)" roleLabel="owns" polymorphic="true">
1586
- <Class class="ISurfaceControl" />
1587
- </Source>
1588
- <Target multiplicity="(0..1)" roleLabel="is owned by" polymorphic="false">
1589
- <Class class="SurfaceControlOptionsAspect" />
1590
- </Target>
1591
- </ECRelationshipClass>
1592
-
1593
- <ECEntityClass typeName="ControlLineEdge" modifier="Abstract" displayLabel="Control Line Edge">
1710
+ <ECEntityClass typeName="ControlLineEdge" displayLabel="Control Line Edge">
1594
1711
  <BaseClass>bis:SpatialLocationElement</BaseClass>
1595
1712
 
1713
+ <ECCustomAttributes>
1714
+ <Deprecated xmlns="CoreCustomAttributes.01.00.04">
1715
+ <Description>Use SurfaceControlPathEdge.</Description>
1716
+ </Deprecated>
1717
+ </ECCustomAttributes>
1718
+
1596
1719
  <ECProperty propertyName="Order" typeName="int">
1597
1720
  <ECCustomAttributes>
1598
- <HiddenProperty xmlns="CoreCustomAttributes.01.00.03" />
1721
+ <HiddenProperty xmlns="CoreCustomAttributes.01.00.04"/>
1599
1722
  </ECCustomAttributes>
1600
1723
  </ECProperty>
1601
1724
 
1602
- <ECNavigationProperty propertyName="StartVertex" relationshipName="ControlLineEdgeStartsAtVertex" direction="Forward" />
1603
- <ECNavigationProperty propertyName="EndVertex" relationshipName="ControlLineEdgeEndsAtVertex" direction="Forward" />
1725
+ <ECNavigationProperty propertyName="StartVertex" relationshipName="ControlLineEdgeStartsAtVertex" direction="forward"/>
1726
+ <ECNavigationProperty propertyName="EndVertex" relationshipName="ControlLineEdgeEndsAtVertex" direction="forward"/>
1604
1727
  </ECEntityClass>
1605
1728
 
1606
- <ECRelationshipClass typeName="ControlLineEdgeStartsAtVertex" strength="referencing" modifier="Sealed">
1729
+ <ECRelationshipClass typeName="ControlLineEdgeStartsAtVertex" modifier="Sealed" strength="referencing" strengthDirection="forward">
1730
+ <ECCustomAttributes>
1731
+ <Deprecated xmlns="CoreCustomAttributes.01.00.04">
1732
+ <Description>Use SurfaceControlPathEdgeStartsAtVertex.</Description>
1733
+ </Deprecated>
1734
+ </ECCustomAttributes>
1607
1735
  <Source multiplicity="(0..*)" roleLabel="starts at" polymorphic="true">
1608
- <Class class="ControlLineEdge" />
1736
+ <Class class="ControlLineEdge"/>
1609
1737
  </Source>
1610
1738
  <Target multiplicity="(1..1)" roleLabel="connects to" polymorphic="true">
1611
- <Class class="SurfaceControlVertex" />
1739
+ <Class class="SurfaceControlVertex"/>
1612
1740
  </Target>
1613
1741
  </ECRelationshipClass>
1614
1742
 
1615
- <ECRelationshipClass typeName="ControlLineEdgeEndsAtVertex" strength="referencing" modifier="Sealed">
1743
+ <ECRelationshipClass typeName="ControlLineEdgeEndsAtVertex" modifier="Sealed" strength="referencing" strengthDirection="forward">
1744
+ <ECCustomAttributes>
1745
+ <Deprecated xmlns="CoreCustomAttributes.01.00.04">
1746
+ <Description>Use SurfaceControlPathEdgeEndsAtVertex.</Description>
1747
+ </Deprecated>
1748
+ </ECCustomAttributes>
1616
1749
  <Source multiplicity="(0..*)" roleLabel="ends at" polymorphic="true">
1617
- <Class class="ControlLineEdge" />
1750
+ <Class class="ControlLineEdge"/>
1618
1751
  </Source>
1619
1752
  <Target multiplicity="(1..1)" roleLabel="connects to" polymorphic="true">
1620
- <Class class="SurfaceControlVertex" />
1753
+ <Class class="SurfaceControlVertex"/>
1621
1754
  </Target>
1622
1755
  </ECRelationshipClass>
1623
1756
 
1624
- <ECEntityClass typeName="SurfaceControlLine" modifier="Sealed" displayLabel="Surface Control Line" description="Surface control line.">
1757
+ <ECEntityClass typeName="SurfaceControlLine" description="Surface control line." displayLabel="Surface Control Line" modifier="Sealed">
1625
1758
  <BaseClass>bis:SpatialLocationElement</BaseClass>
1626
1759
  <BaseClass>ISurfaceControlObject</BaseClass>
1627
1760
 
1628
- <ECStructProperty propertyName="StrokeOptions" typeName="SurfaceControlStrokeOptions" displayLabel="Stroke Options" description="Specifies stroke options for adding points along the path." />
1761
+ <ECCustomAttributes>
1762
+ <Deprecated xmlns="CoreCustomAttributes.01.00.04">
1763
+ <Description>Use SurfaceControlPath.</Description>
1764
+ </Deprecated>
1765
+ </ECCustomAttributes>
1766
+ <ECStructProperty propertyName="StrokeOptions" typeName="SurfaceControlStrokeOptions" description="Specifies stroke options for adding points along the path." displayLabel="Stroke Options"/>
1629
1767
  </ECEntityClass>
1630
1768
 
1631
- <ECRelationshipClass typeName="SurfaceControlLineOwnsEdges" strength="embedding" strengthDirection="Forward" modifier="Sealed">
1769
+ <ECRelationshipClass typeName="SurfaceControlLineOwnsEdges" modifier="Sealed" strength="embedding">
1632
1770
  <BaseClass>bis:ElementOwnsChildElements</BaseClass>
1633
1771
 
1772
+ <ECCustomAttributes>
1773
+ <Deprecated xmlns="CoreCustomAttributes.01.00.04">
1774
+ <Description>Use SurfaceControlPathOwnsEdges.</Description>
1775
+ </Deprecated>
1776
+ </ECCustomAttributes>
1634
1777
  <Source multiplicity="(1..1)" roleLabel="owns" polymorphic="false">
1635
- <Class class="SurfaceControlLine" />
1778
+ <Class class="SurfaceControlLine"/>
1636
1779
  </Source>
1637
1780
  <Target multiplicity="(1..*)" roleLabel="is owned by" polymorphic="false">
1638
- <Class class="ControlLineEdge" />
1781
+ <Class class="ControlLineEdge"/>
1639
1782
  </Target>
1640
1783
  </ECRelationshipClass>
1641
1784
 
@@ -1681,4 +1824,4 @@
1681
1824
  <Class class="bis:TypeDefinitionElement" />
1682
1825
  </Target>
1683
1826
  </ECRelationshipClass>
1684
- </ECSchema>
1827
+ </ECSchema>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bentley/open-site-schema",
3
3
  "license": "MIT",
4
- "version": "1.0.19-dev.1",
4
+ "version": "1.0.19-dev.2",
5
5
  "homepage": "https://www.itwinjs.org/",
6
6
  "keywords": [
7
7
  "Bentley",