-
Notifications
You must be signed in to change notification settings - Fork 88
List entities v2 #240
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
List entities v2 #240
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -6,9 +6,21 @@ | |
| <xs:sequence> | ||
| <xs:element name="Header" type="Header" minOccurs="0"/> | ||
| <xs:element name="Topic" type="Topic"/> | ||
| <xs:element name="Comment" type="Comment" minOccurs="0" maxOccurs="unbounded"/> | ||
| <xs:element name="Comments" minOccurs="0"> | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Comments and Viewpoints elements were discussed to be moved into the Topic element
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I agree. Can fix
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. should the same be done with viewpoints also then?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Any other inputs?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @pbuts, I'll move the comments (and viewpoints) in another PR. |
||
| <xs:complexType> | ||
| <xs:sequence> | ||
| <xs:element name="Comment" type="Comment" minOccurs="0" maxOccurs="unbounded"/> | ||
| </xs:sequence> | ||
| </xs:complexType> | ||
| </xs:element> | ||
| <!-- ISG Jira issue BCF-9. Add support for several viewpoints and snapshots per issue --> | ||
| <xs:element name="Viewpoints" type="ViewPoint" minOccurs="0" maxOccurs="unbounded"/> | ||
| <xs:element name="Viewpoints" minOccurs="0"> | ||
| <xs:complexType> | ||
| <xs:sequence> | ||
| <xs:element name="ViewPoint" type="ViewPoint" minOccurs="0" maxOccurs="unbounded"/> | ||
| </xs:sequence> | ||
| </xs:complexType> | ||
| </xs:element> | ||
| </xs:sequence> | ||
| </xs:complexType> | ||
| </xs:element> | ||
|
|
@@ -58,13 +70,25 @@ | |
| </xs:complexType> | ||
| <xs:complexType name="Topic"> | ||
| <xs:sequence> | ||
| <xs:element name="ReferenceLink" type="xs:string" minOccurs="0" maxOccurs="unbounded"/> | ||
| <xs:element name="ReferenceLinks" minOccurs="0"> | ||
| <xs:complexType> | ||
| <xs:sequence> | ||
| <xs:element name="ReferenceLink" type="xs:string" minOccurs="0" maxOccurs="unbounded"/> | ||
| </xs:sequence> | ||
| </xs:complexType> | ||
| </xs:element> | ||
| <xs:element name="Title" type="xs:string"/> | ||
| <xs:element name="Priority" type="Priority" minOccurs="0"/> | ||
| <!-- ISG Jira issue BCF-8 Add a way save order the topics --> | ||
| <!-- This property is deprecated and will be removed in a future release --> | ||
| <xs:element name="Index" type="xs:int" minOccurs="0"/> | ||
| <xs:element name="Labels" type="TopicLabel" minOccurs="0" maxOccurs="unbounded"/> | ||
| <xs:element name="Labels" minOccurs="0"> | ||
| <xs:complexType> | ||
| <xs:sequence> | ||
| <xs:element name="Label" type="xs:string" minOccurs="0" maxOccurs="unbounded"/> | ||
| </xs:sequence> | ||
| </xs:complexType> | ||
| </xs:element> | ||
| <xs:element name="CreationDate" type="xs:dateTime" minOccurs="1"/> | ||
| <xs:element name="CreationAuthor" type="UserIdType" minOccurs="1"/> | ||
| <xs:element name="ModifiedDate" type="xs:dateTime" minOccurs="0"/> | ||
|
|
@@ -74,10 +98,29 @@ | |
| <xs:element name="Stage" type="Stage" minOccurs="0"/> | ||
| <xs:element name="Description" type="xs:string" minOccurs="0"/> | ||
| <xs:element name="BimSnippet" type="BimSnippet" minOccurs="0"/> | ||
| <xs:element name="DocumentReferences" type="DocumentReference" minOccurs="0" maxOccurs="unbounded"/> | ||
| <xs:element name="RelatedTopic" minOccurs="0" maxOccurs="unbounded"> | ||
| <xs:element name="DocumentReferences" minOccurs="0"> | ||
| <xs:complexType> | ||
| <xs:attribute name="Guid" type="Guid" use="required"/> | ||
| <xs:sequence> | ||
| <xs:element name="DocumentReference" type="DocumentReference" minOccurs="0" maxOccurs="unbounded"/> | ||
| </xs:sequence> | ||
| </xs:complexType> | ||
| </xs:element> | ||
| <xs:element name="DocumentReferences" minOccurs="0"> | ||
| <xs:complexType> | ||
| <xs:sequence> | ||
| <xs:element name="DocumentReference" type="DocumentReference" minOccurs="0" maxOccurs="unbounded"/> | ||
| </xs:sequence> | ||
| </xs:complexType> | ||
| </xs:element> | ||
| <xs:element name="RelatedTopics" minOccurs="0"> | ||
| <xs:complexType> | ||
| <xs:sequence> | ||
| <xs:element name="RelatedTopic" minOccurs="0" maxOccurs="unbounded"> | ||
| <xs:complexType> | ||
| <xs:attribute name="Guid" type="Guid" use="required"/> | ||
| </xs:complexType> | ||
| </xs:element> | ||
| </xs:sequence> | ||
| </xs:complexType> | ||
| </xs:element> | ||
| </xs:sequence> | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.