Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Curbs to CivilSpatial Schema #454

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@
<ECEntityClass typeName="GenericAreaType" displayLabel="Generic Space Type" modifier="Sealed" description="Defines a shared set of properties whose values vary per-type of cvsp:GenericArea rather than per-instance.">
<BaseClass>spcomp:SpaceType</BaseClass>
</ECEntityClass>

<ECRelationshipClass typeName="GenericAreaIsOfType" strength="referencing" modifier="Sealed" description="A type-instance relation; one that indicates that the specific cvsp:GenericArea is an instance of the defined cvsp:GenericAreaType.">
<BaseClass>spcomp:SpaceIsOfType</BaseClass>
<Source multiplicity="(0..*)" roleLabel="is of" polymorphic="false">
Expand All @@ -153,4 +153,22 @@
<Class class="GenericAreaType"/>
</Target>
</ECRelationshipClass>

<ECEntityClass typeName="Curb" modifier="None" displayLabel="Curb" description="A cvsp:Space modeling a curb.">
<BaseClass>Space</BaseClass>
</ECEntityClass>

<ECEntityClass typeName="CurbType" modifier="None" displayLabel="Curb Type" description="Defines a shared set of properties whose values vary per-type of cvsp:Curb rather than per-instance.">
<BaseClass>spcomp:SpaceType</BaseClass>
</ECEntityClass>

<ECRelationshipClass typeName="CurbIsOfType" strength="referencing" modifier="None" description="A type-instance relation; one that indicates that the specific cvsp:Curb is an instance of the defined cvsp:CurbType.">
<BaseClass>spcomp:SpaceIsOfType</BaseClass>
<Source multiplicity="(0..*)" roleLabel="is of" polymorphic="true">
<Class class="Curb" />
</Source>
<Target multiplicity="(0..1)" roleLabel="is type of" polymorphic="true">
<Class class="CurbType"/>
</Target>
</ECRelationshipClass>
</ECSchema>
Loading