@prefix : <https://w3id.org/football-cdf/core#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@base <https://w3id.org/football-cdf/core#> .

<https://w3id.org/football-cdf/core> rdf:type owl:Ontology ;
                                      <http://purl.org/dc/terms/contributor> "Gregor Käfer" ,
                                                                             "Matthias Kempe" ;
                                      <http://purl.org/dc/terms/created> "2025-07-25" ;
                                      <http://purl.org/dc/terms/creator> "Fajar J. Ekaputra" ;
                                      <http://purl.org/dc/terms/description> """
        An ontology serialization of the Football Common Data Format (CDF).
        Currently in alpha version, focusing on Match Sheet, Event, and Match Metadata.
    """@en ;
                                      <http://purl.org/dc/terms/license> <https://creativecommons.org/licenses/by/4.0> ;
                                      <http://purl.org/dc/terms/modified> "2025-07-31" ;
                                      <http://purl.org/dc/terms/title> "Football Common Data Format Ontology"@en ;
                                      <http://purl.org/vocab/vann/preferredNamespacePrefix> "fcdf" ;
                                      <http://purl.org/vocab/vann/preferredNamespaceUri> "https://w3id.org/football-cdf/core#" ;
                                      owl:versionInfo "1.0.0-alpha" .

#################################################################
#    Annotation properties
#################################################################

###  http://purl.org/dc/terms/contributor
<http://purl.org/dc/terms/contributor> rdf:type owl:AnnotationProperty .


###  http://purl.org/dc/terms/created
<http://purl.org/dc/terms/created> rdf:type owl:AnnotationProperty .


###  http://purl.org/dc/terms/creator
<http://purl.org/dc/terms/creator> rdf:type owl:AnnotationProperty .


###  http://purl.org/dc/terms/description
<http://purl.org/dc/terms/description> rdf:type owl:AnnotationProperty .


###  http://purl.org/dc/terms/license
<http://purl.org/dc/terms/license> rdf:type owl:AnnotationProperty .


###  http://purl.org/dc/terms/modified
<http://purl.org/dc/terms/modified> rdf:type owl:AnnotationProperty .


###  http://purl.org/dc/terms/title
<http://purl.org/dc/terms/title> rdf:type owl:AnnotationProperty .


###  http://purl.org/vocab/vann/preferredNamespacePrefix
<http://purl.org/vocab/vann/preferredNamespacePrefix> rdf:type owl:AnnotationProperty .


###  http://purl.org/vocab/vann/preferredNamespaceUri
<http://purl.org/vocab/vann/preferredNamespaceUri> rdf:type owl:AnnotationProperty .


#################################################################
#    Object Properties
#################################################################

###  https://w3id.org/football-cdf/core#assist_id
:assist_id rdf:type owl:ObjectProperty ;
           rdfs:domain :Goal ;
           rdfs:range :Player ;
           rdfs:comment "The player who assisted the goal." .


###  https://w3id.org/football-cdf/core#competition
:competition rdf:type owl:ObjectProperty ;
             rdfs:domain :Match ;
             rdfs:range :Competition ;
             rdfs:comment """ 
            An ObjectProperty that links match to competition in which the match is played.
            """ .


###  https://w3id.org/football-cdf/core#events
:events rdf:type owl:ObjectProperty ;
        rdfs:domain :Match ;
        rdfs:range :Event ;
        rdfs:comment """ 
            An ObjectProperty that links match to the events that occur during the match, such as goals, substitutions, and cards.
            """ .


###  https://w3id.org/football-cdf/core#events_cards
:events_cards rdf:type owl:ObjectProperty ;
              rdfs:subPropertyOf :events ;
              rdfs:domain :Match ;
              rdfs:range :Card ;
              rdfs:comment """ 
                An ObjectProperty that links match to the cards issued during the match.
                """ .


###  https://w3id.org/football-cdf/core#events_goals
:events_goals rdf:type owl:ObjectProperty ;
              rdfs:subPropertyOf :events ;
              rdfs:domain :Match ;
              rdfs:range :Goal ;
              rdfs:comment """ 
                An ObjectProperty that links match to the goals scored during the match.
                """ .


###  https://w3id.org/football-cdf/core#events_subtitutions
:events_subtitutions rdf:type owl:ObjectProperty ;
                     rdfs:subPropertyOf :events ;
                     rdfs:domain :Match ;
                     rdfs:range :Subtitution ;
                     rdfs:comment """ 
                An ObjectProperty that links match to the substitutions made during the match.
                """ .


###  https://w3id.org/football-cdf/core#match_result
:match_result rdf:type owl:ObjectProperty ;
              rdfs:domain :Match ;
              rdfs:range :Match_Result ;
              rdfs:comment """ 
            An ObjectProperty that links match to result of the match, which includes the score and period of the result.
            """ .


###  https://w3id.org/football-cdf/core#match_status
:match_status rdf:type owl:ObjectProperty ;
              rdfs:domain :Match ;
              rdfs:range :Match_Status ;
              rdfs:comment """ 
            An ObjectProperty that links match to status of the match, which include information about whether it is a neutral venue, has extra time, or a shootout.
            """ .


###  https://w3id.org/football-cdf/core#meta
:meta rdf:type owl:ObjectProperty ;
      rdfs:domain :Match ;
      rdfs:range :Meta ;
      rdfs:comment """ 
            Metadata about the match, such as data collection version, fps (for video data), collection timing, and vendor.
            """ .


###  https://w3id.org/football-cdf/core#out_player_id
:out_player_id rdf:type owl:ObjectProperty ;
               rdfs:domain :Subtitution ;
               rdfs:range :Player ;
               rdfs:comment "The player who is substituted out." .


###  https://w3id.org/football-cdf/core#player_id
:player_id rdf:type owl:ObjectProperty ;
           rdfs:domain :Event ;
           rdfs:range :Player ;
           rdfs:comment "The player who is involved in the event." .


###  https://w3id.org/football-cdf/core#players
:players rdf:type owl:ObjectProperty ;
         rdfs:domain :Team ;
         rdfs:range :Player ;
         rdfs:comment "An ObjectProperty that links team to its players." .


###  https://w3id.org/football-cdf/core#receiver_id
:receiver_id rdf:type owl:ObjectProperty ;
             rdfs:domain :Pass ;
             rdfs:range :Player ;
             rdfs:comment "The player who receives the pass." .


###  https://w3id.org/football-cdf/core#referee
:referee rdf:type owl:ObjectProperty ;
         rdfs:domain :Match ;
         rdfs:range :Referee ;
         rdfs:comment """ 
            The referee officiating the match.
            """ .


###  https://w3id.org/football-cdf/core#related_event_ids
:related_event_ids rdf:type owl:ObjectProperty ;
                   rdfs:domain :Event ;
                   rdfs:range :Event ;
                   rdfs:comment """ 
            Unique identifier(s) of the events related to the action, or pass and associated receival event. 
            Leave null if no related events exist.
            """ .


###  https://w3id.org/football-cdf/core#season
:season rdf:type owl:ObjectProperty ;
        rdfs:domain :Match ;
        rdfs:range :Season ;
        rdfs:comment """ 
            An ObjectProperty that links match to season in which the match is played.
            """ .


###  https://w3id.org/football-cdf/core#stadium
:stadium rdf:type owl:ObjectProperty ;
         rdfs:domain :Match ;
         rdfs:range :Stadium ;
         rdfs:comment """ 
            The stadium where the match is played.
            """ .


###  https://w3id.org/football-cdf/core#team_id
:team_id rdf:type owl:ObjectProperty ;
         rdfs:range :Team ;
         rdfs:comment "An ObjectProperty that links a resource to a football team." .


###  https://w3id.org/football-cdf/core#teams_away
:teams_away rdf:type owl:ObjectProperty ;
            rdfs:domain :Match ;
            rdfs:range :Team ;
            rdfs:comment """ 
            The away team of the match.
            """ .


###  https://w3id.org/football-cdf/core#teams_home
:teams_home rdf:type owl:ObjectProperty ;
            rdfs:domain :Match ;
            rdfs:range :Team ;
            rdfs:comment """ 
            The home team of the match.
            """ .


#################################################################
#    Data properties
#################################################################

###  https://w3id.org/football-cdf/core#body_part
:body_part rdf:type owl:DatatypeProperty ;
           rdfs:domain :Event ;
           rdfs:range xsd:string ;
           rdfs:comment """ 
            Denotes the body part used by player_id which can take on the values: 
                left_foot, 
                right_foot, 
                head, or 
                other
            """ .


###  https://w3id.org/football-cdf/core#card_type
:card_type rdf:type owl:DatatypeProperty ;
           rdfs:domain :Card ;
           rdfs:range xsd:string ;
           rdfs:comment """ 
                    'yellow', 
                    'red', 
                    'second_yellow'
                    """ .


###  https://w3id.org/football-cdf/core#collection_timing
:collection_timing rdf:type owl:DatatypeProperty ;
                   rdfs:domain :Meta ;
                   rdfs:range xsd:dateTime ;
                   rdfs:comment """ 
            The time when the data was collected, which can be used to understand the context of the data.
            """ .


###  https://w3id.org/football-cdf/core#event_period
:event_period rdf:type owl:DatatypeProperty ;
              rdfs:domain :Event ;
              rdfs:range xsd:string ;
              rdfs:comment """ 
            The period of the event, which can take on the values: 
            'first_half', 
            'second_half',
            'first_half_extratime', 
            'second_half_extratime', 
            'shootout'
            """ .


###  https://w3id.org/football-cdf/core#first_name
:first_name rdf:type owl:DatatypeProperty ;
            rdfs:domain :Player ;
            rdfs:range xsd:string ;
            rdfs:comment "The first name of the player." .


###  https://w3id.org/football-cdf/core#fps
:fps rdf:type owl:DatatypeProperty ;
     rdfs:domain :Meta ;
     rdfs:range xsd:integer ;
     rdfs:comment """ 
            Frames per second for video data, which can be used to synchronize events with video footage.
            """ .


###  https://w3id.org/football-cdf/core#has_extratime
:has_extratime rdf:type owl:DatatypeProperty ;
               rdfs:domain :Match_Status ;
               rdfs:range xsd:boolean ;
               rdfs:comment "Indicates whether the match has extra time." .


###  https://w3id.org/football-cdf/core#has_played
:has_played rdf:type owl:DatatypeProperty ;
            rdfs:domain :Player ;
            rdfs:range xsd:boolean ;
            rdfs:comment "Indicates whether the player has played in the match." .


###  https://w3id.org/football-cdf/core#has_shootout
:has_shootout rdf:type owl:DatatypeProperty ;
              rdfs:domain :Match_Status ;
              rdfs:range xsd:boolean ;
              rdfs:comment "Indicates whether the match has a shootout." .


###  https://w3id.org/football-cdf/core#id
:id rdf:type owl:DatatypeProperty ;
    rdfs:range xsd:string ;
    rdfs:comment "Unique identifier for the resource." .


###  https://w3id.org/football-cdf/core#is_neutral
:is_neutral rdf:type owl:DatatypeProperty ;
            rdfs:domain :Match_Status ;
            rdfs:range xsd:boolean ;
            rdfs:comment "Indicates whether the match is played at a neutral venue." .


###  https://w3id.org/football-cdf/core#is_own_goal
:is_own_goal rdf:type owl:DatatypeProperty ;
             rdfs:domain :Goal ;
             rdfs:range xsd:boolean ;
             rdfs:comment "Indicates whether the goal is an own goal." .


###  https://w3id.org/football-cdf/core#is_penalty
:is_penalty rdf:type owl:DatatypeProperty ;
            rdfs:domain :Goal ;
            rdfs:range xsd:boolean ;
            rdfs:comment "Indicates whether the goal is a penalty." .


###  https://w3id.org/football-cdf/core#is_starter
:is_starter rdf:type owl:DatatypeProperty ;
            rdfs:domain :Player ;
            rdfs:range xsd:boolean ;
            rdfs:comment "Indicates whether the player is a starter in the match." .


###  https://w3id.org/football-cdf/core#jersey_number
:jersey_number rdf:type owl:DatatypeProperty ;
               rdfs:domain :Player ;
               rdfs:range xsd:integer ;
               rdfs:comment "The jersey number of the player." .


###  https://w3id.org/football-cdf/core#kickoff_time
:kickoff_time rdf:type owl:DatatypeProperty ;
              rdfs:domain :Match ;
              rdfs:range xsd:dateTime ;
              rdfs:comment """ 
            Scheduled kickoff time in UTC.
            """ .


###  https://w3id.org/football-cdf/core#last_name
:last_name rdf:type owl:DatatypeProperty ;
           rdfs:domain :Player ;
           rdfs:range xsd:string ;
           rdfs:comment "The last name of the player." .


###  https://w3id.org/football-cdf/core#misc_outcome_type
:misc_outcome_type rdf:type owl:DatatypeProperty ;
                   rdfs:subPropertyOf :outcome_type ;
                   rdfs:domain :Misc ;
                   rdfs:range xsd:string ;
                   rdfs:comment """ 
                'successful', 
                'unsuccessful'
                """ .


###  https://w3id.org/football-cdf/core#misc_type
:misc_type rdf:type owl:DatatypeProperty ;
           rdfs:subPropertyOf :sub_type ;
           rdfs:domain :Misc ;
           rdfs:range xsd:string ;
           rdfs:comment """ 
                'other_ball_action', 
                'chance_without_shot', 
                'tackle'
                """ .


###  https://w3id.org/football-cdf/core#out_time
:out_time rdf:type owl:DatatypeProperty ;
          rdfs:domain :Subtitution ;
          rdfs:range xsd:dateTime ;
          rdfs:comment "The time when the player is substituted out." .


###  https://w3id.org/football-cdf/core#outcome_type
:outcome_type rdf:type owl:DatatypeProperty ;
              rdfs:domain :Event ;
              rdfs:range xsd:string ;
              rdfs:comment """ 
            Detailed event outcome options: 
                shot (successful, saved, blocked, wide, woodwork, own_goal); 
                pass (successful, out_of_play, intercepted); 
                referee (start, end, injury, yellow_card, red_card, second_yellow_card); 
                misc (successful, unsuccessful)
            """ .


###  https://w3id.org/football-cdf/core#pass_outcome_type
:pass_outcome_type rdf:type owl:DatatypeProperty ;
                   rdfs:subPropertyOf :outcome_type ;
                   rdfs:domain :Pass ;
                   rdfs:range xsd:string ;
                   rdfs:comment """ 
                Detailed pass outcome options, which can take on the values: 
                'successful', 
                'out_of_play',  
                'intercepted'
                """ .


###  https://w3id.org/football-cdf/core#pass_type
:pass_type rdf:type owl:DatatypeProperty ;
           rdfs:subPropertyOf :sub_type ;
           rdfs:domain :Shot ;
           rdfs:range xsd:string ;
           rdfs:comment """ 
                Name of the pass subtype, which can take on the values: 
                'None', 
                'throw_in', 
                'free_kick', 
                'corner_kick', 
                'goal_kick', 
                'kick_off'
                """ .


###  https://w3id.org/football-cdf/core#pitch_length
:pitch_length rdf:type owl:DatatypeProperty ;
              rdfs:domain :Stadium ;
              rdfs:range xsd:float ;
              rdfs:comment "Length of the pitch (m), unknown if not available, null if not available" .


###  https://w3id.org/football-cdf/core#pitch_width
:pitch_width rdf:type owl:DatatypeProperty ;
             rdfs:domain :Stadium ;
             rdfs:range xsd:float ;
             rdfs:comment "Width of the pitch (m), unknown if not available, null if not available" .


###  https://w3id.org/football-cdf/core#receiver_time
:receiver_time rdf:type owl:DatatypeProperty ;
               rdfs:domain :Pass ;
               rdfs:range xsd:dateTime ;
               rdfs:comment "The time when the pass is received." .


###  https://w3id.org/football-cdf/core#referee_event_outcome_type
:referee_event_outcome_type rdf:type owl:DatatypeProperty ;
                            rdfs:domain :Referee_Event ;
                            rdfs:range xsd:string ;
                            rdfs:comment """ 
                Detailed referee event outcome options, which can take on the values: 
                'start', 
                'end', 
                'injury', 
                'yellow_card', 
                'red_card', 
                'second_yellow_card'
                """ .


###  https://w3id.org/football-cdf/core#referee_event_type
:referee_event_type rdf:type owl:DatatypeProperty ;
                    rdfs:subPropertyOf :sub_type ;
                    rdfs:domain :Referee_Event ;
                    rdfs:range xsd:string ;
                    rdfs:comment """ 
                Name of the referee event subtype, which can take on the values: 
                'final_whistle', 
                'foul', 
                'caution', 
                'offside', 
                'substitution', 
                'player_on', 
                'player_off'
                """ .


###  https://w3id.org/football-cdf/core#result_away
:result_away rdf:type owl:DatatypeProperty ;
             rdfs:domain :Match_Result ;
             rdfs:range xsd:integer ;
             rdfs:comment "The score of the away team in the match result." .


###  https://w3id.org/football-cdf/core#result_home
:result_home rdf:type owl:DatatypeProperty ;
             rdfs:domain :Match_Result ;
             rdfs:range xsd:integer ;
             rdfs:comment "The score of the home team in the match result." .


###  https://w3id.org/football-cdf/core#result_period
:result_period rdf:type owl:DatatypeProperty ;
               rdfs:domain :Match_Result ;
               rdfs:range xsd:string ;
               rdfs:comment """ 
            'final', 
            'first_half', 
            'second_half',
            'first_half_extratime', 
            'second_half_extratime', 
            'shootout'
            """ .


###  https://w3id.org/football-cdf/core#shot_outcome_type
:shot_outcome_type rdf:type owl:DatatypeProperty ;
                   rdfs:subPropertyOf :outcome_type ;
                   rdfs:domain :Shot ;
                   rdfs:range xsd:string ;
                   rdfs:comment """ 
                Detailed shot outcome options, which can take on the values: 
                'successful', 
                'saved',  
                'blocked',
                'wide',
                'woodwork',
                'own_goal'
                """ .


###  https://w3id.org/football-cdf/core#shot_type
:shot_type rdf:type owl:DatatypeProperty ;
           rdfs:subPropertyOf :sub_type ;
           rdfs:domain :Shot ;
           rdfs:range xsd:string ;
           rdfs:comment """ 
                Name of the shot subtype, which can take on the values: 
                'None', 
                'penalty_kick', 
                'free_kick', 
                'corner_kick'
                """ .


###  https://w3id.org/football-cdf/core#sub_type
:sub_type rdf:type owl:DatatypeProperty ;
          rdfs:domain :Event ;
          rdfs:range xsd:string ;
          rdfs:comment """ 
            Name of the event subtype, which can be for 
                shot (None, penalty_kick, free_kick, corner_kick); 
                pass (None, throw_in, free_kick, corner_kick, goal_kick, kick_off); 
                referee (final_whistle, foul, caution, offside, substitution, player_on, player_off); 
                misc (other_ball_action, chance_without_shot, tackle)
            """ .


###  https://w3id.org/football-cdf/core#time
:time rdf:type owl:DatatypeProperty ;
      rdfs:domain :Event ;
      rdfs:range xsd:dateTime ;
      rdfs:comment "The time of the event in UTC." .


###  https://w3id.org/football-cdf/core#type
:type rdf:type owl:DatatypeProperty ;
      rdfs:domain :Event ;
      rdfs:range xsd:string ;
      rdfs:comment """ 
            The type of the event, which can take on the values: 
            'shot', 
            'substitution', 
            'card', 
            'pass', 
            'shootout'
            """ .


###  https://w3id.org/football-cdf/core#vendor
:vendor rdf:type owl:DatatypeProperty ;
        rdfs:domain :Meta ;
        rdfs:range xsd:string ;
        rdfs:comment """ 
            The vendor or source of the data, which can be used to identify the origin of the dataset.
            """ .


###  https://w3id.org/football-cdf/core#version
:version rdf:type owl:DatatypeProperty ;
         rdfs:domain :Meta ;
         rdfs:range xsd:string ;
         rdfs:comment """ 
            Version of the data collection, which can be used to track changes in the dataset.
            """ .


###  https://w3id.org/football-cdf/core#x
:x rdf:type owl:DatatypeProperty ;
   rdfs:domain :Event ;
   rdfs:range xsd:float ;
   rdfs:comment "The x-coordinate of the event in the pitch coordinate system." .


###  https://w3id.org/football-cdf/core#x_end
:x_end rdf:type owl:DatatypeProperty ;
       rdfs:domain :Event ;
       rdfs:range xsd:float ;
       rdfs:comment "The x-coordinate of the end point of the event in the pitch coordinate system." .


###  https://w3id.org/football-cdf/core#y
:y rdf:type owl:DatatypeProperty ;
   rdfs:domain :Event ;
   rdfs:range xsd:float ;
   rdfs:comment "The y-coordinate of the event in the pitch coordinate system." .


###  https://w3id.org/football-cdf/core#y_end
:y_end rdf:type owl:DatatypeProperty ;
       rdfs:domain :Event ;
       rdfs:range xsd:float ;
       rdfs:comment "The y-coordinate of the end point of the event in the pitch coordinate system." .


#################################################################
#    Classes
#################################################################

###  https://w3id.org/football-cdf/core#Card
:Card rdf:type owl:Class ;
      rdfs:subClassOf :Referee_Event ;
      rdfs:comment """
                Unique football card event. URI localname represent unique card event identifier.
                """ .


###  https://w3id.org/football-cdf/core#Competition
:Competition rdf:type owl:Class ;
             rdfs:comment """
        Unique football competition. URI localname represent unique competition identifier.
        """ .


###  https://w3id.org/football-cdf/core#Event
:Event rdf:type owl:Class ;
       rdfs:comment """
        Unique football event. URI localname represent unique event identifier.
        """ .


###  https://w3id.org/football-cdf/core#Goal
:Goal rdf:type owl:Class ;
      rdfs:subClassOf :Shot ;
      rdfs:comment """
                Unique football goal event. URI localname represent unique goal identifier.
                """ .


###  https://w3id.org/football-cdf/core#Match
:Match rdf:type owl:Class ;
       rdfs:comment "Unique football match. URI localname represent unique match identifier" .


###  https://w3id.org/football-cdf/core#Match_Result
:Match_Result rdf:type owl:Class ;
              rdfs:comment """
        The result of the match, which includes the score and period of the result.
        """ .


###  https://w3id.org/football-cdf/core#Match_Status
:Match_Status rdf:type owl:Class ;
              rdfs:comment """
        The status of the match, which include information about whether it is a neutral venue, has extra time, or a shootout.
        """ .


###  https://w3id.org/football-cdf/core#Meta
:Meta rdf:type owl:Class ;
      rdfs:comment "Metadata about the match, such as data collection version, fps (for video data), collection timing, and vendor." .


###  https://w3id.org/football-cdf/core#Misc
:Misc rdf:type owl:Class ;
      rdfs:subClassOf :Event ;
      rdfs:comment """
            Miscellaneous event. URI localname represent unique miscellaneous event identifier.
            """ .


###  https://w3id.org/football-cdf/core#Pass
:Pass rdf:type owl:Class ;
      rdfs:subClassOf :Event ;
      rdfs:comment """
            Unique football pass event. URI localname represent unique pass identifier.
            """ .


###  https://w3id.org/football-cdf/core#Player
:Player rdf:type owl:Class ;
        rdfs:comment """
        Unique football player. URI localname represent unique player identifier.
        """ .


###  https://w3id.org/football-cdf/core#Referee
:Referee rdf:type owl:Class ;
         rdfs:comment """
        The referee officiating the match, which can be used to track the performance of referees across matches.
    """ .


###  https://w3id.org/football-cdf/core#Referee_Event
:Referee_Event rdf:type owl:Class ;
               rdfs:subClassOf :Event ;
               rdfs:comment """
            Unique football referee event. URI localname represent unique referee event identifier.
            """ .


###  https://w3id.org/football-cdf/core#Season
:Season rdf:type owl:Class ;
        rdfs:comment """
        Unique football season. URI localname represent unique season identifier.
        """ .


###  https://w3id.org/football-cdf/core#Shot
:Shot rdf:type owl:Class ;
      rdfs:subClassOf :Event ;
      rdfs:comment """
            Unique football shot event. URI localname represent unique shot identifier.
            """ .


###  https://w3id.org/football-cdf/core#Stadium
:Stadium rdf:type owl:Class ;
         rdfs:comment """
        Unique football stadium. URI localname represent unique stadium identifier.
        """ .


###  https://w3id.org/football-cdf/core#Subtitution
:Subtitution rdf:type owl:Class ;
             rdfs:subClassOf :Referee_Event ;
             rdfs:comment """
                Unique football substitution event. URI localname represent unique substitution event identifier.
                """ .


###  https://w3id.org/football-cdf/core#Team
:Team rdf:type owl:Class ;
      rdfs:comment """
        Unique football team. URI localname represent unique team identifier.
        """ .


###  https://w3id.org/football-cdf/core#Vendor
:Vendor rdf:type owl:Class ;
        rdfs:comment """ 
        The vendor or source of the data, which can be used to identify the origin of the dataset.
        """ .


###  Generated by the OWL API (version 5.1.18) https://github.com/owlcs/owlapi/
