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

Feature/topic area #115

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions Documentation/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ ModifiedDate | Yes | Date when the topic was last modified. Exists only when Top
ModifiedAuthor | Yes | User who modified the topic. Exists only when Topic has been modified after creation.
DueDate | Yes | Date until when the topics issue needs to be resolved.
AssignedTo | Yes | The user to whom this topic is assigned to.
TopicArea | Yes | The area this topic is referencing (Predefined list in “extension.xsd”).
Description | Yes | Description of the topic.


Expand Down
10 changes: 9 additions & 1 deletion Extension Schemas/extensions.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,15 @@
<xs:enumeration value="[email protected]"/>
<xs:enumeration value="[email protected]"/>
</xs:restriction>
</xs:simpleType>
</xs:simpleType>
<!--List of defined areas for referencing in a topic-->
<xs:simpleType name="TopicArea">
<xs:restriction base="TopicArea">
<xs:enumeration value="West Wing"/>
<xs:enumeration value="Basement"/>
<xs:enumeration value="Garage"/>
</xs:restriction>
</xs:simpleType>
</xs:redefine>
<xs:element name="ExtendedTopicType" type="TopicType"/>
<xs:element name="ExtendedTopicStatus" type="TopicStatus"/>
Expand Down
1 change: 1 addition & 0 deletions Schemas/markup.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@
<xs:element name="ModifiedAuthor" type="UserIdType" minOccurs="0"/>
<xs:element name="DueDate" type="xs:dateTime" minOccurs="0"/>
<xs:element name="AssignedTo" type="UserIdType" minOccurs="0"/>
<xs:element name="TopicArea" type="TopicArea" minOccurs="0"/>
<xs:element name="Description" type="xs:string" minOccurs="0"/>
<xs:element name="BimSnippet" type="BimSnippet" minOccurs="0" maxOccurs="unbounded"/>
<!-- Name of the file in the topic folder or url -->
Expand Down