JiscMail Logo
Email discussion lists for the UK Education and Research communities

Help for DC-ARCHITECTURE Archives


DC-ARCHITECTURE Archives

DC-ARCHITECTURE Archives


DC-ARCHITECTURE@JISCMAIL.AC.UK


View:

Message:

[

First

|

Previous

|

Next

|

Last

]

By Topic:

[

First

|

Previous

|

Next

|

Last

]

By Author:

[

First

|

Previous

|

Next

|

Last

]

Font:

Proportional Font

LISTSERV Archives

LISTSERV Archives

DC-ARCHITECTURE Home

DC-ARCHITECTURE Home

DC-ARCHITECTURE  September 2014

DC-ARCHITECTURE September 2014

Options

Subscribe or Unsubscribe

Subscribe or Unsubscribe

Log In

Log In

Get Password

Get Password

Subject:

AW: AW: AW: AW: [RDF AP] Action on examples in constraint languages

From:

"Bosch, Thomas" <[log in to unmask]>

Reply-To:

DCMI Architecture Forum <[log in to unmask]>

Date:

Mon, 29 Sep 2014 15:27:52 +0000

Content-Type:

text/plain

Parts/Attachments:

Parts/Attachments

text/plain (310 lines)

Hi Antoine,

now I see, thanks for reformulating.

In fact, I am doing a trick, but if I reveal it now it won't be magic anymore... ;-)

1. 
-----

Each resource which should be validated needs to have this triple:

:resource rdf:type owl:Thing .

As every individual in the OWL world is a member of the class owl:Thing, this statement is semantically correct.

But what we also could do is using other classes such as :ToValidate.

These triples do not have to be stated in future version of the RDF validator, as they can also be inferred automatically if wished.

2.
-----

I specified a SPIN mapping for each constrain language, one for OWL 2 and one for DSP (the next logical choice would be ShEx).

For each constraint I define a SPIN construct template.
In the following example for the OWL 2 construct 'Object Property Domain':

owl2spin:ObjectPropertyDomain
    a spin:ConstructTemplate ;
    rdfs:subClassOf spin:ConstructTemplates ;
    spin:labelTemplate "Axioms - Object Property Axioms - Object Property Domain" ; # spin:violationSource
    spin:body [
        rdf:type sp:Construct ;

        ...

    ] .

3.
-----

But how and when id this SPIN construct template invoked?

Within the same SPIN mapping document I specify these triples for each constraint:

owl:Thing 
    spin:constraint
        [   a owl2spin:ObjectPropertyDomain ] .

This means that the OWL 2 constraint 'Object Property Domain' is validated againts each individuals which is of the type owl:Thing
and exactly this is the glue.

4.
-----

For each owl:Thing individual all OWL 2 constraints are validated according to the same principle.

Within the SPIN construct templates the individual constraints are evaluated using SPARQL construct queries constructing constraint violation triples when specific conditions are fulfilled.


Nothing really magic ...


Cheers,
Thomas  

--
Thomas Bosch, M.Sc. (TUM)
PhD Student
GESIS - Leibniz Institute for the Social Sciences
Social Science Metadata Standards
Visitors Address: B2,1, D-68159 Mannheim
Postal Address: P.O.Box 12 21 55, D-68072 Mannheim
Tel: + 49 (0) 621 / 1246-271
Fax: + 49 (0) 621 / 1246-100
Web: http://www.gesis.org
Website: http://boschthomas.blogspot.com/
GitHub: https://github.com/boschthomas/PhD


________________________________________
Von: DCMI Architecture Forum [[log in to unmask]]&quot; im Auftrag von &quot;Antoine Isaac [[log in to unmask]]
Gesendet: Montag, 29. September 2014 16:55
An: [log in to unmask]
Betreff: Re: AW: AW: AW: [RDF AP] Action on examples in constraint languages

Hi Thomas,

Let me try to reformulate it.
Given my constraint
[
oer:addressCountry a owl:ObjectProperty .
oer:addressCountry rdfs:range oer:Country .
]
how come that your tool was able to make a message that contains the string "Axioms - Object Property Axioms - Object Property Range"???
The documents that you've cited [1,2] don't do the trick. These are documents for humans. You need some machine-readble dictionary (in the form of an RDF file, an XML file, or even static declarations in a Java class).

Antoine

On 9/29/14 4:43 PM, Bosch, Thomas wrote:
> Hi Antoine,
>
> I did not get your point regarding your last paragraph:
>
> For the fact that the validator recognizes the type of constraint, well now I'd be very curious to see where/what is the bridge between the constraints we make and the categories at [1] and [2]. The categorizations (ie. the fact that a given constraint is a "Class membership constraint") in those pages are not immediately machine-actionable, as far as I can tell!
>
>
> Best,
> Thomas
>
> --
> Thomas Bosch, M.Sc. (TUM)
> PhD Student
> GESIS - Leibniz Institute for the Social Sciences
> Social Science Metadata Standards
> Visitors Address: B2,1, D-68159 Mannheim
> Postal Address: P.O.Box 12 21 55, D-68072 Mannheim
> Tel: + 49 (0) 621 / 1246-271
> Fax: + 49 (0) 621 / 1246-100
> Web: http://www.gesis.org
> Website: http://boschthomas.blogspot.com/
> GitHub: https://github.com/boschthomas/PhD
>
>
> ________________________________________
> Von: DCMI Architecture Forum [[log in to unmask]]&quot; im Auftrag von &quot;Antoine Isaac [[log in to unmask]]
> Gesendet: Montag, 29. September 2014 16:26
> An: [log in to unmask]
> Betreff: Re: AW: AW: [RDF AP] Action on examples in constraint languages
>
> Hi Thomas,
>
> Really sorry for not answering sooner...
>
> So this answers my question on the difference between our examples. Thanks!
> I will have a look at the re-worked examples and try to integrate them on the requirement pages and put them on a wiki, which may be better for keeping track of discussions (and indeed writing a wiki page was my original action).
>
> On dsp:standalone, ok I see, and since it is optional indeed it's better to leave it out, as it doesn't seem to be needed for addressing the requirement as it was expressed. The same will apply later to the extra infer-able triples that are needed for validation!
>
> For the fact that the validator recognizes the type of constraint, well now I'd be very curious to see where/what is the bridge between the constraints we make and the categories at [1] and [2]. The categorizations (ie. the fact that a given constraint is a "Class membership constraint") in those pages are not immediately machine-actionable, as far as I can tell!
>
> Cheers,
>
> Antoine
>
> On 9/22/14 10:01 AM, Bosch, Thomas wrote:
>> Hi,
>>
>> thank you Antoine for your questions.
>>
>> differences between Antoine's DSP example and my DSP example which can be used for the validator
>> -----
>>
>> - Antoine uses the XML serialization, I use the RDF serialization of DSP.
>> - additionally some RDF triples are needed for validation, which can be automatically inferred in future versions of the validator: every individual for which constraints have to be checked has to be of the type owl:Thing
>>
>>
>> Actually even I am not sure what the dsp:standalone and dsp:statementTemplate mean (and why there's a  dsp:maxOccur set to 5) in "R-28-OBJECT-PROPERTY-RANGE - DSP example". 1.ttl" )
>> -----
>>
>> dsp:standalone (see DSP constraint 5.2 in [1]) means that instances of the class ex:PostalAddress (dsp:resourceClass) are allowed to occur standalone, i.e. without being the value of a property.
>> As dsp:standalone is optional, I removed it from the examples.
>>
>> dsp:statementTemplate may be either a dsp:NonLiteralStatementTemplate or a dsp:LiteralStatementTemplate.
>> With a dsp:NonLiteralStatementTemplate you can define constraints for object properties (pointing from individuals to individuals) and
>> with dsp:LiteralStatementTemplate you can state constraints on data properties (pointing from individuals to literals such as strings).
>>
>> Sorry for dsp:maxOccur = "5", I set it now to "infinity" (see constraints 5.4 and 6.2 in [1]).
>>
>>
>> It seems that the validator has recognized the type of constraint violation, even though the name was not in the data input. Is there some pre-defined knowledge based of constraint patterns?
>> -----
>>
>> Indeed the RDF validator recognizes the type of constraint validation according to the structure of your constraints and your data.
>> For OWL 2 I used the structural specification of OWL 2 [2] and for DSP I used this specification [1].
>>
>> Hope I could answer your questions adequately.
>> Attached you find the changed DSP examples.
>>
>>
>> Cheers,
>> Thomas
>>
>> [1] http://dublincore.org/documents/2008/03/31/dc-dsp/
>> [2] http://www.w3.org/TR/owl2-syntax/
>>
>>
>> --
>> Thomas Bosch, M.Sc. (TUM)
>> PhD Student
>> GESIS - Leibniz Institute for the Social Sciences
>> Social Science Metadata Standards
>> Visitors Address: B2,1, D-68159 Mannheim
>> Postal Address: P.O.Box 12 21 55, D-68072 Mannheim
>> Tel: + 49 (0) 621 / 1246-271
>> Fax: + 49 (0) 621 / 1246-100
>> Web: http://www.gesis.org
>> Website: http://boschthomas.blogspot.com/
>> GitHub: https://github.com/boschthomas/PhD
>>
>>
>> ________________________________________
>> Von: DCMI Architecture Forum [[log in to unmask]]&quot; im Auftrag von &quot;Antoine Isaac [[log in to unmask]]
>> Gesendet: Sonntag, 21. September 2014 21:46
>> An: [log in to unmask]
>> Betreff: Re: AW: [RDF AP] Action on examples in constraint languages
>>
>> Hi Thomas,
>>
>> Just to clarify: I know the relation, I just want to make sure that everyone on the list does get the right info ;-)
>>
>> Actually even I am not sure what the dsp:standalone and dsp:statementTemplate mean (and why there's a  dsp:maxOccur set to 5) in "R-28-OBJECT-PROPERTY-RANGE - DSP example". 1.ttl" )
>>
>> Also, I was really happy to see my first constraint violation in the OWL2 validation demo :-) but I'm still a bit puzzled by the output:
>> [
>> Constraint Violations
>> root    http://www.example.org/ex#amsterdam
>> message         ObjectPropertyRange ( http://www.example.org/oer#addressCountry http://www.example.org/oer#Country )
>> source  Axioms - Object Property Axioms - Object Property Range
>> path    http://www.example.org/oer#addressCountry
>> ]
>>
>> It seems that the validator has recognized the type of constraint violation, even though the name was not in the data input. Is there some pre-defined knowledge based of constraint patterns?
>>
>> Cheers,
>>
>> Antoine
>>
>> On 9/21/14 9:17 PM, Antoine Isaac wrote:
>>> Hi Thomas,
>>>
>>> How do these differ from what I've done?
>>>
>>> Best,
>>>
>>> Antoine
>>>
>>> On 9/21/14 8:15 PM, Bosch, Thomas wrote:
>>>> Hello everybody,
>>>>
>>>> attached you find some files containing DSP and OWL constraints as well as valid and invalid data.
>>>> You can use these files to validate this constraint:
>>>>
>>>> R-28-OBJECT-PROPERTY-RANGE
>>>> http://lelystad.informatik.uni-mannheim.de/rdf-validation/?q=node/35
>>>>
>>>> Feel free to play with the RDF validator (purl.org/net/rdfval-demo), in order to validate the constraints.
>>>> The fastest way is to upload each of these files using the upload functionality (DSP upload or OWL 2 upload).
>>>>
>>>>
>>>> Cheers,
>>>> Thomas
>>>>
>>>> --
>>>> Thomas Bosch, M.Sc. (TUM)
>>>> PhD Student
>>>> GESIS - Leibniz Institute for the Social Sciences
>>>> Social Science Metadata Standards
>>>> Visitors Address: B2,1, D-68159 Mannheim
>>>> Postal Address: P.O.Box 12 21 55, D-68072 Mannheim
>>>> Tel: + 49 (0) 621 / 1246-271
>>>> Fax: + 49 (0) 621 / 1246-100
>>>> Web: http://www.gesis.org
>>>> Website: http://boschthomas.blogspot.com/
>>>> GitHub: https://github.com/boschthomas/PhD
>>>>
>>>>
>>>> ________________________________________
>>>> Von: DCMI Architecture Forum [[log in to unmask]]&quot; im Auftrag von &quot;Antoine Isaac [[log in to unmask]]
>>>> Gesendet: Dienstag, 16. September 2014 23:52
>>>> An: [log in to unmask]
>>>> Betreff: [RDF AP] Action on examples in constraint languages
>>>>
>>>> Hi everyone,
>>>>
>>>> For the two actions:
>>>>
>>>> ACTION: Antoine to send an email to the list suggesting to record example in constraint languages in the database.
>>>> ACTION: Antoine to do it for two easy examples and two hard ones, from Stefanie's list, and put it on the wiki.
>>>>
>>>> In Stefanie's email, I've picked the following two 'easy' ones:
>>>>
>>>> R-28-OBJECT-PROPERTY-RANGE
>>>> http://lelystad.informatik.uni-mannheim.de/rdf-validation/?q=node/35
>>>>
>>>> R-68-REQUIRED-PROPERTIES
>>>> http://lelystad.informatik.uni-mannheim.de/rdf-validation/?q=node/75
>>>>
>>>> Two 'hard' ones:
>>>>
>>>> R-25-OBJECT-PROPERTY-DOMAIN
>>>> http://lelystad.informatik.uni-mannheim.de/rdf-validation/?q=node/32
>>>>
>>>> R-26-DATA-PROPERTY-DOMAIN
>>>> http://lelystad.informatik.uni-mannheim.de/rdf-validation/?q=node/33
>>>>
>>>>
>>>> My additions are directly in the database, not on the wiki. I guess that with the discussion we're having, the attention is rather focused on the database now. We can still put stuff on the wiki later.
>>>>
>>>> For the two easy ones, I have just added some examples, with counter-examples (data that is not ok according to the constraint).
>>>> For the two last ones, I've proposed an alternative definition, and examples.
>>>>
>>>> The examples come in DSP and OWL (with a closed world assumption).
>>>> Note that the last two ones may not have a DSP expression.
>>>>
>>>> Best,
>>>>
>>>> Antoine
>>>>

Top of Message | Previous Page | Permalink

JiscMail Tools


RSS Feeds and Sharing


Advanced Options


Archives

February 2024
January 2024
October 2023
September 2023
August 2023
July 2023
June 2023
May 2023
April 2023
March 2023
February 2023
January 2023
December 2022
November 2022
September 2022
August 2022
June 2022
May 2022
April 2022
March 2022
February 2022
January 2022
November 2021
October 2021
September 2021
August 2021
July 2021
May 2021
April 2021
March 2021
February 2021
January 2021
December 2020
November 2020
September 2020
August 2020
July 2020
June 2020
April 2020
March 2020
February 2020
January 2020
December 2019
November 2019
September 2019
August 2019
July 2019
June 2019
May 2019
April 2019
March 2019
February 2019
January 2019
December 2018
November 2018
October 2018
September 2018
August 2018
July 2018
June 2018
May 2018
April 2018
March 2018
February 2018
January 2018
December 2017
November 2017
September 2017
August 2017
July 2017
June 2017
May 2017
April 2017
March 2017
February 2017
January 2017
December 2016
November 2016
October 2016
September 2016
August 2016
July 2016
June 2016
May 2016
April 2016
March 2016
February 2016
January 2016
December 2015
November 2015
October 2015
September 2015
August 2015
July 2015
June 2015
May 2015
April 2015
March 2015
February 2015
January 2015
December 2014
November 2014
October 2014
September 2014
August 2014
July 2014
June 2014
May 2014
April 2014
March 2014
February 2014
January 2014
November 2013
October 2013
September 2013
August 2013
July 2013
June 2013
May 2013
April 2013
March 2013
February 2013
January 2013
December 2012
November 2012
October 2012
September 2012
August 2012
July 2012
June 2012
May 2012
April 2012
March 2012
February 2012
January 2012
December 2011
November 2011
October 2011
September 2011
August 2011
July 2011
June 2011
May 2011
April 2011
March 2011
February 2011
January 2011
December 2010
November 2010
October 2010
September 2010
August 2010
July 2010
June 2010
May 2010
April 2010
March 2010
February 2010
January 2010
December 2009
November 2009
October 2009
September 2009
August 2009
July 2009
June 2009
May 2009
April 2009
March 2009
February 2009
January 2009
November 2008
October 2008
September 2008
August 2008
July 2008
June 2008
May 2008
April 2008
February 2008
January 2008
December 2007
November 2007
October 2007
September 2007
August 2007
July 2007
May 2007
April 2007
March 2007
February 2007
January 2007
December 2006
November 2006
October 2006
September 2006
August 2006
July 2006
June 2006
May 2006
April 2006
March 2006
February 2006
January 2006
December 2005
November 2005
September 2005
August 2005
July 2005
June 2005
April 2005
March 2005
February 2005
January 2005
December 2004
November 2004
October 2004
September 2004
August 2004
July 2004
June 2004
May 2004
March 2004
February 2004
January 2004
November 2003
October 2003
September 2003
August 2003
June 2003
May 2003
April 2003
March 2003
January 2003
December 2002
November 2002
October 2002
September 2002
August 2002
July 2002
June 2002
May 2002
April 2002
March 2002
February 2002
January 2002
December 2001
November 2001
October 2001
September 2001
August 2001
July 2001
June 2001
May 2001
April 2001
March 2001
February 2001
December 2000
November 2000
October 2000


JiscMail is a Jisc service.

View our service policies at https://www.jiscmail.ac.uk/policyandsecurity/ and Jisc's privacy policy at https://www.jisc.ac.uk/website/privacy-notice

For help and support help@jisc.ac.uk

Secured by F-Secure Anti-Virus CataList Email List Search Powered by the LISTSERV Email List Manager