This is an archive of an inactive wiki and cannot be modified.

Issues tracker: ISSUE-26, ISSUE-27

The first decision point here is, do we move all support for label relations out of the SKOS vocabulary and into XL?

The second decision point is, do we publish XL as part of the SKOS Recommendation? If so, is it an appendix to the SKOS Reference, or is it a separate document?

We should continue discussion here *only if* we have previously agreed that XL is part of the SKOS Recommendation. Otherwise, we should move on to other issues in scope, and postpone detailed discussion of XL.

If XL is to be part of the recommendation, then:

Dependencies:

References:

Discussion and comments (most recent first):

Pattern: n-ary relations between plain literals ...

<skos:Concept>
  <skos:prefLabel>WHO</skos:prefLabel>
  <skos:altLabel>World Health Organization</skos:altLabel>
  <xl:seeLabelRelation>
    <ex:AcronymRelation>
      <ex:acronym>WHO</ex:acronym>
      <ex:fullForm>World Health Organization</ex:fullForm>
    </ex:AcronymRelation>
  </xl:seeLabelRelation>
</skos:Concept>

Pattern: binary relations between instances of xl:Label ...

<skos:Concept>
  <xl:prefLabel>
    <xl:Label rdf:about="L1">
      <xl:literalForm>WHO</xl:literalForm>
    </xl:Label>
  </xl:prefLabel>
  <xl:altLabel>
    <xl:Label rdf:about="L2">
      <xl:literalForm>World Health Organization</xl:literalForm>
      <ex:acronym rdf:resource="L1"/>
    </xl:Label>
  </xl:altLabel>
</skos:Concept>