-
Notifications
You must be signed in to change notification settings - Fork 34
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
Implement ordering in observable:MessageThread #393
Comments
A follow-on patch will generate Make-managed files. References: * #393 Signed-off-by: Alex Nelson <alexander.nelson@nist.gov>
References: * #393 Signed-off-by: Alex Nelson <alexander.nelson@nist.gov>
…r directories A follow-on patch will regenerate Make-managed files. References: * ucoProject/UCO#393 Signed-off-by: Alex Nelson <alexander.nelson@nist.gov>
References: * ucoProject/UCO#393 Signed-off-by: Alex Nelson <alexander.nelson@nist.gov>
A follow-on patch will regenerate Make-managed files. References: * ucoProject/UCO#393 Signed-off-by: Alex Nelson <alexander.nelson@nist.gov>
References: * ucoProject/UCO#393 Signed-off-by: Alex Nelson <alexander.nelson@nist.gov>
No effects were observed on Make-managed files. References: * ucoProject/UCO#393 Signed-off-by: Alex Nelson <alexander.nelson@nist.gov>
I would disagree with the proposal to make observable:MessageThread a subclass of the newly proposed types:Thread as it is likely to have all the complex semantic entailment issues as outlined in Risk 7 of CP-389 (#389). I would propose that a much more straightforward and low risk approach would be to not alter the subclassing of the observable classes at all and rather simply rename the observable:message property to observable:messageThread and change its range to be types:Thread instead of observable:ObservableObject. |
@sbarnum , because I remembered UCO's usage of Also, I had forgotten that UCO does not have I'll adjust this proposal to add |
I'm further inclined to recommend This is another instance of what I have found to be a harmful accident from the OWL translation. An OWL minimum cardinality 1 expresses that there exists at least one message for any given message thread. I agree there. The SHACL constraint fails your data if you don't make an explicit reference to a message, which is harmful because you might want to express that a thread exists with a concrete identifier, but you might not know yet which message objects are its members. So I will recommend to the committee we also delete |
No effects were observed on Make-managed files. References: #393 Signed-off-by: Alex Nelson <alexander.nelson@nist.gov>
No effects were observed on Make-managed files. References: #393 Signed-off-by: Alex Nelson <alexander.nelson@nist.gov>
A follow-on patch will generate Make-managed files. References: #393 Signed-off-by: Alex Nelson <alexander.nelson@nist.gov>
References: #393 Signed-off-by: Alex Nelson <alexander.nelson@nist.gov>
No effects were observed on Make-managed files. References: * ucoProject/UCO#393 Signed-off-by: Alex Nelson <alexander.nelson@nist.gov>
This is the minimal set of changes needed to confirm conformace with the current state of UCO Issue 393's implementation. A follow-on patch will add list ordering. No effects were observed on Make-managed files. References: * ucoProject/UCO#393 Signed-off-by: Alex Nelson <alexander.nelson@nist.gov>
No effects were observed on Make-managed files. References: * ucoProject/UCO#393 Signed-off-by: Alex Nelson <alexander.nelson@nist.gov>
Solution vote today incorporates that |
Users interested in representing a message occurring in a thread, without knowing the order of that message, should use the `co:element` property as demonstrated in the updated example `message_thread_PASS.json`. A follow-on patch will regenerate Make-managed files. References: #393 Signed-off-by: Alex Nelson <alexander.nelson@nist.gov>
References: #393 Signed-off-by: Alex Nelson <alexander.nelson@nist.gov>
No effects were observed on Make-managed files. References: * ucoProject/UCO#393 Signed-off-by: Alex Nelson <alexander.nelson@nist.gov>
`observable:message` will be deleted in UCO 0.10.0. This patch prepares its unordered replacement property, `co:element`. A follow-on patch will regenerate Make-managed files. References: ucoProject/UCO#393 Signed-off-by: Alex Nelson <alexander.nelson@nist.gov>
UCO Issue 393 added a test that assumed a file's existence during the UCO CI. That file is the UCO monolithic build, a purposefully Git- ignored build artifact. `case-utils` currently repurposes the UCO `pytest` script to ensure UCO's tests also pass when substituting the monolithic build of CASE. With Issue 393, the file reference to the UCO monolithic build needs to be handled downstream in `case-utils`. This patch adds that file by making a copy as a Git-ignored file. (A soft link could cause potential confusion due to management of the modification timestamp on the monolithic build file.) References: * ucoProject/UCO#393 * [ONT-295] Release CASE 1.0.0 Signed-off-by: Alex Nelson <alexander.nelson@nist.gov>
UCO Issue 393 added a test that assumed a file's existence during the UCO CI. That file is the UCO monolithic build, a purposefully Git- ignored build artifact. `case-utils` currently repurposes the UCO `pytest` script to ensure UCO's tests also pass when substituting the monolithic build of CASE. With Issue 393, the file reference to the UCO monolithic build needs to be handled downstream in `case-utils`. This patch adds that file by making a copy as a Git-ignored file. (A soft link could cause potential confusion due to management of the modification timestamp on the monolithic build file.) References: * ucoProject/UCO#393 * [ONT-295] Release CASE 1.0.0 Signed-off-by: Alex Nelson <alexander.nelson@nist.gov>
A follow-on patch will regenerate Make-managed files. References: * ucoProject/UCO#393 Signed-off-by: Alex Nelson <alexander.nelson@nist.gov>
Disclaimer
Participation by NIST in the creation of the documentation of mentioned software is not intended to imply a recommendation or endorsement by the National Institute of Standards and Technology, nor is it intended to imply that any specific software is necessarily the best available for the purpose.
Background
Issue 389 imports the Collections Ontology to provide UCO with a reusable representation for ordered lists.
co:List
implements a strictly linear list - it can have at most one "beginning" member, and at most one "ending" member. It cannot fork.Message threads in UCO, such as email reply threads, can link into a semi-ordered structure, and be non-linear via forking (two replies to the same message) or multiple
In-Reply-to
header values (possible per RFC 2822, Section 3.6.4). So, aco:List
would not serve the needs of UCO's email-based message threads.The design of
co:List
could be adapted into a new sibling class ofco:List
. This proposal does so, defining in the UCO Types namespace a classtypes:Thread
that supports partial ordering using classes and properties from the Collections Ontology thatco:List
had subclassed. With thistypes:Thread
class,observable:MessageThread
is refined as a subclass oftypes:Thread
, enabling representation of reply sequences.Requirements
Requirement 1
UCO must have a class to represent partially ordered sets. This proposal will refer to that class as a
Thread
.Requirement 2
A
Thread
must support one of its members being followed directly by 0, 1, or more other members.Requirement 3
A
Thread
must support one of its members directly following 0, 1, or more other members.Requirement 4
It must be possible to represent a gap in a thread's ordering, where some members are believed to follow others via an unknown but definite sequence of links.
Requirement 5
It must be possible to determine whether a member of a thread follows another member topologically, via knowledge of direct links or indirect links.
Requirement 6
observable:MessageThread
must be able to represent a non-linear email thread, with 0, 1, or moreIn-Reply-to
headers per email, and 0, 1, or more messages replying to any email.Risk / Benefit analysis
Benefits
Thread
class provides a substantially different behavior to the linearco:List
class, and is capable of supporting complex email reply chains.Risks
Thread
class is based on an external dependency. Should something significant change in the Collections Ontology, theThread
class would also need to change.MessageThreadFacet
. What should become the subclass ofThread
-MessageThread
orMessageThreadFacet
? This proposal choosesMessageThread
becauseFacet
s, as a part of an object and not a "Whole" object, are likely to cause significant semantic interoperability concern if they were to become subclasses of other classes that represent "Whole" objects. There are valid arguments that a message being in a thread is domain-specific representation and inherent quality of the object, and thus would follow other UCO design examples and moveMessageThreadFacet
to being the subclass ofThread
. However, to the proposer, this does not outweigh the interoperability concerns, nor the "Object Wholeness" matter.observable:message
has to date represented the way to link aMessage
to aMessageThread
, though without the ability to define an order.observable:message
is a property housed inMessageThreadFacet
, but has a similar structure toco:element
which would reside on aThread
[sic.] object. This proposal (currently) makes no suggestions on changing theobservable:message
property.Competencies demonstrated
Competency 1
Suppose an email message set is found, with
In-Reply-to
headers linking messages like this (where a higher integer connected to a lower integer means the message with the higher integer replied to the message with the lower integer):Competency Question 1.1
How many messages were replied to how many times, on a scale of 0, 1, multiple?
Result 1.1
These are represented in the unit test
tests/examples/message_thread_PASS.json
,kb:message-thread-1
andkb:message-7
.Competency Question 1.2
What messages follow 1, topologically?
Result 1.2
2, 3, 4, and 6.
This query is encoded in a Python unit test in the PR,
test_message_thread()
.Solution suggestion
types:Thread
, analagous toco:List
except instead of being a linear list, nodes within the list can follow multiple nodes and be followed by multiple nodes.co:List
has a designation for its first and last items, theThread
defines an "Origin item" as an item with no predecessor, and a "Terminal item" as an item with no successor.The following table shows analogous classes and properties. Each property is cited with
rdfs:seeAlso
, and each class is designatedowl:disjointWith
, in the attached PR.co:List
types:Thread
co:ListItem
types:ThreadItem
co:firstItem
types:threadOriginItem
co:followedBy
types:threadSuccessor
co:lastItem
types:threadTerminalItem
co:nextItem
types:threadNextItem
co:precededBy
types:threadPredecessor
co:previousItem
types:threadPreviousItem
sh:targetSubjectsOf
as with the Collections Ontology issue.Thread
class as theco:List
was exercised in the Collections Ontology proposal.In support of OWL inferencing, and to maintain parallel structure with the Collections Ontology, some OWL constructs are ported from the
co:List
class. The ported constructs are cited withrdfs:comment
s and/orrdfs:seeAlso
.Coordination
develop
The text was updated successfully, but these errors were encountered: