Skip to content
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

Tracking Atomic Values as IDs #210

Open
awanczowski opened this issue Oct 22, 2024 · 1 comment
Open

Tracking Atomic Values as IDs #210

awanczowski opened this issue Oct 22, 2024 · 1 comment

Comments

@awanczowski
Copy link
Contributor

In certain cases you want to retain the identifier of an object as a simple value.

I propose utilizing rdf:ID in the examples to track this information since the rdf properties are already available to us. Otherwise, we can create new properties and subclass them.

<http://example.com/Event/E755363>
        rdf:type                       sport:Event ;
        rdf:ID                         "E755363"
        rdfs:label                     "Event E755363" ;
        sport:attendance               "32964" ;
        sport:eventInCompetition       <http://example.com/Competition/l.premierleague.com-2014> ;
        sport:eventInCompetitionPhase  <http://example.com/CompetitionPhase/l.premierleague.com-2014-week-7> ;
        sport:eventOutcomeType         speventoutcometype:regular ;
        sport:eventStatus              <http://cv.iptc.org/newscodes/speventstatus/post-event> ;
        sport:location                 <http://example.com/Site/s.34> .
@pauljkelly
Copy link
Collaborator

pauljkelly commented Oct 29, 2024

From meeting discussion:

<http://example.com/Event/E755363>
        rdf:type                       sport:Event ;
        sport:altId                    <http://example.com/ExternalId/opta/E755363>,<http://example.com/ExternalId/stats/E54325432>,<http://example.com/ExternalId/gracenote/E6587658>
        rdfs:label                     "Raiders at Bills, November 2, 2024" ;
        sport:attendance               "32964" ;
        sport:location                 <http://example.com/Site/s.34> .
        
<http://example.com/ExternalId/opta/E755363>
        rdf:type                       sport:ExternalId ;
        rdf:label                       "OPTA ID for Raiders at Bills, November 2, 2024" ;
        TBD:
        sport:iDprovider                  <opta.org>
        sport:iDtype                       :xxx ;
        sport:iDauthorityControl

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

No branches or pull requests

2 participants