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 2006

DC-ARCHITECTURE September 2006

Options

Subscribe or Unsubscribe

Subscribe or Unsubscribe

Log In

Log In

Get Password

Get Password

Subject:

Administrative metadata (Was RE: Proposal for a minimal description model subset)

From:

Pete Johnston <[log in to unmask]>

Reply-To:

DCMI Architecture Group <[log in to unmask]>

Date:

Tue, 26 Sep 2006 18:31:54 +0100

Content-Type:

text/plain

Parts/Attachments:

Parts/Attachments

text/plain (314 lines)

Hi Ann,

> Your proposed DC-XML-MIN looks good.
>
> I have one question about related descriptions / described 
> resource. Your example 19 is showing a description of a 
> textual resource and a description of a publisher agent. So 
> the resource includes a dc:publisher property with a 
> descriptionRef indicating the description of a publisher.
> 
> What if I have descriptions that are (at least seem to me) 
> slightly more tied together. My particular example would be a 
> description of a resource and a related description that is 
> some administrative metadata about the first resource.

I wrote a long reply and then realised I may be misinterpreting your
question!

I read your reference to "administrative metadata" as referring to
"metadata about your metadata", but then I re-read your message and your
reference to "administrative metadata about the first resource" and I
wasn't sure that was what you meant after all.

If you want to say that

(a) the document has a title "My document" (descriptive metadata), and
the document was modified on 2006-09-25 (administrative metadata)

then these are just two statements about the same resource. You could
provide two statements within the same description. Or you could use two
descriptions with the same resource URI, in separate description sets
and exposed to the world as separate records if that approach is useful
in terms of managing or processing the data. You'd need a resource URI
to be able to establish that the two descriptions are "about" the same
resource though (or some other indirect identification method like the
FOAF "person with this mailbox" approach.) The fact that one statement
provides what we think of as "descriptive metadata" and the other
provides what we think of as "administrative metadata" doesn't matter in
terms of how the information is represented.

And if that was your scenario, then you can ignore the rest of this
message! ;-)

If, OTOH, you do want to say that

(b) the document has a title "My document" and your description of the
document was modified on 2006-09-25 (not that the document itself was
modified on 2006-09-25)

then things get more complicated. Here the subject of the
"administrative metadata", the resource described by that second
description, is not "the first resource" (the resource described by the
first description - the document with title "My document"); it is the
_description_ _of_ the first resource. 

> Is it 
> permissible to use descriptionRef as an attribute of 
> dcxml:description? This would look like:
> 
> <dcxm:descriptionSet>
> 
>   <dcxm:description dcxm:descriptionId="abc123">
>     <dc:title>My document</dc:title>
>   </dcxm:description>
> 
>   <dcxm:description dcxm:descriptionRef="abc123">
>     <dcterms:modified>2006-09-25</dcterms:modified>
>   </dcxm:description>
> 
> </dcxm:description>

The short answer is no, that isn't supported by the proposed format.
I'll try to explain why, but I don't think we can really start from the
form of the XML instance. I think we have to start from what information
is to be encoded/represented, couch that in terms of the information
structures defined by the DCMI Abstract Model (i.e. as one or more DC
description sets) and then think about how we might represent those
description sets using XML. 

A validating parser using the supplied XML Schemas would (I think)
reject the instance above as invalid. If the instance was not subject to
validation, then the instance could be parsed and interpreted as a DC
description set, but the dcxm:descriptionRef attribute would be ignored
in course of that interpretation as a DC metadata description set i.e.
there is no mapping of that XML attribute value to the DC description
set. 

So the resulting description set would be (in DC-Text):

DescriptionSet (
  Description (
    Statement (
      PropertyURI ( dc:title )
      ValueString ( "My document" )
    )
  )
  Description (
    Statement (
      PropertyURI ( dcterms:modified )
      ValueString ( "2006-09-25" )
    )
  )
)

Which "says":

1. there exists some unidentified resource (i.e. the first description
has no resource URI) which

1a. has a relationship of the type indicated by the dc:title property
(so "has-a-title", if you like) with the resource represented by the
string "My document"

2. there exists some unidentified resource (i.e. the second description
has no resource URI) which  

2a. has a relationship of the type indicated by the dcterms:modified
property ("has-a-last-modified-date") with the resource represented by
the string "2006-09-25"

> Or do I need to introduce a dc:relation property? This would 
> make the second description:
> 
>   <dcxm:description>
>     <dcterms:modified>2006-09-25</dcterms:modified>
>     <dc:relation dcxm:descriptionRef="abc123">
>   </dcxm:description>

This second form is supported by the proposed format, and would (I hope)
be valid if validated against the supplied XML Schemas. 

So substituting this description element for the second description
element in the example above, then that represents the following
description set (in DC-Text):

DescriptionSet (
  Description (
    Statement (
      PropertyURI ( dcterms:modified )
      ValueString ( "2006-09-25" )
    )
    Statement (
      PropertyURI ( dc:relation )
      DescriptionRef ( abc123 )
    )
  )
  Description (
    DescriptionId ( abc123 )
    Statement (
      PropertyURI ( dc:title )
      ValueString ( "My document" )
    )
  )
)

(I switched the order of the descriptions there to make the next part
easier to write as a set of sentences, but the order is of no
significance.)

And that description set "says":

1. there exists some unidentified resource (i.e. the second description
has no resource URI) which  

1a. has a relationship of the type indicated by the dcterms:modified
property ("has-a-last-modified-date") with the resource represented by
the string "2006-09-25"
1b. has a relationship of the type indicated by the dc:relation property
("has-some-unspecified-relationship-with") with an unidentified resource
(i.e. the statement provides no value URI and the description of the
value provides no resource URI), and

2. that unidentified resource
2a. has a relationship of the type indicated by the dc:title property
("has-a-title") with the resource represented by the string "My
document"

Now then, in both of these examples, I think these description sets
represent "true" accounts of your scenario.

In the first case 1a is a true assertion if the described resource is
the document, and 2a is a true assertion if the described resource is
the description of the document. Neither of those assertions tell us
that there is any relationship between the two described resources.

In the second case 1a and 1b are true assertions if the described
resource is the description of the document, and 2a is a true assertion
if the described resource is the document. And furthermore 1b tells us
that there is a relationship between the two described resources. 

However, in both cases, there is no way of determining that the resource
which it is asserted "has-a-last-modified-date" is specifically _that_
other description in the description set. 

The statements in DC metadata description sets are "about" "things in
the world", not "things in DC description sets". What the "related
description" construct in the DCAM description model allows me to say
is:

The thing-in-the-world described by this description (set of statements)
here 

is related (in the way indicated by the Property URI) to 

the thing-in-the-world described by that description (set of statements)
there.

The DCAM description model does _not_ allow me to say:

The thing-in-the-world described by this description (set of statements)
here 

is related (in the way indicated by the Property URI) to 

that description (set of statements) there.

(or vice versa)

Now in the context of some application, we may decide that the "things
in the world" that we are interested in do indeed include DC metadata
description sets and DC metadata descriptions (maybe even individual
statements), so we could assign URIs to those things and create
descriptions of them  

DescriptionSet (
  Description (
    ResourceURI ( <http://example.org/statement/1234> )
    Statement (
      PropertyURI ( ex:isMemberOf )
      ValueURI ( <http://example.org/description/4567> )
    )
  )
  Description (
    ResourceURI ( <http://example.org/description/4567> )
    Statement (
      PropertyURI ( ex:isMemberOf )
      ValueURI ( <http://example.org/descriptionSet/6789> )
    )
    Statement (
      PropertyURI ( dc:creator )
      ValueString ( "Ann" )
    )
  )
  Description (
    ResourceURI ( <http://example.org/descriptionSet/6789> )
    Statement (
      PropertyURI ( dcterms:modified )
      ValueString ( "2006-09-25" )
    )
  )
) 

i.e. the resource identified by the URI
http://example.org/statement/1234 (I could have added a type statement
to say it was a "statement" but to save space I didn't) is a member of
the resource identified by the URI http://example.org/description/4567
(again could have specified a resource type) which was created by (the
entity represented by) "Ann", and which in turn is a member of the
resource identified by the URI http://example.org/descriptionSet/6789
(again could have specified a resource type) which was last modified on
(the date represented by) "2006-09-25".

OK, so now we have some "administrative metadata" descriptions, but even
if I know that the resource identified by the URI
http://example.org/description/4567 is a DC metadata description, I
still don't know that it is that specific metadata description back up
there in your first example. 

This is similar to the document case, though: going back to the first
example, if I have a statement that the resource identified by the URI
http://example.org/document/abcd has-a-title "My document", that
statement doesn't tell me anything more about the "content" of that
resource. It doesn't tell me that it "is" some bitstream. 

I think this comes down to a question about the relationship between the
resource URI and the resource identified by the URI, and I think that is
outside the scope of the DCAM description model. If I have a URI for
some resource, then I might de-reference that URI and obtain a
representation of the resource - in the case of
http://example.org/description/4567 , that representation might indicate
which statements are members of that description, but it might not! But
any such behaviour is, I think, outside what the description model can
specify. 

(The association between the OAI-PMH "about" container and the "record"
container is another example of how this is addressed outside of the
scope of the metadata formats used within those containers, I think.)

We touched on this issue briefly in the context of the LOM-DCAM work,
and there's a message from Mikael at

http://www.jiscmail.ac.uk/cgi-bin/webadmin?A2=ind0601&L=dc-ieeeltsc-task
force&P=820

which (I think?) suggests a similar conclusion.

So basically, I think the answer is that the DCAM description model does
allow you to provide a description of a description (or a description
set or a statement or whatever) but it doesn't allow you to make a
direct association with the thing described - so it doesn't support what
you suggest in your example (if indeed that's what you meant!).

I was turning over the notion of whether it is possible to build
suppport for such an association into the XML format even though it
isn't part of the description model, but I'm really not sure I've
thought through the logic of doing that. So at the moment, I think it
has to be "pushed out" to the application to manage those relationships.
 
> I would prefer to be able to use the more concise first form, 
> but I'm not sure if dcxm:descriptionRef is a permitted XML 
> attribute for dcxm:description.

Pete

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