phun:id leaf node


URI

https://ontology.phunware.com/1.0/id

Label

id

Description

The string containing the id of the CongressionalDistrict node. The id is a concatenation: CongressionalDistrictName_StateName_CountryName(2CharCode) - The id of the postal code (postalcode_2charCountryCode). - The ID (e.g., "MC_Phunware DSP") for the media channel - The ID of the custom segment - The ID (e.g., "PW_WifiAccessPoint_12:34:mg:23") for the wifi access point - The ID for the Place - The ID (e.g., "PW_Zone_12:34:mg:23") for the zone - The string containing the id of the Country node. The id is the ISO 3166-1 alpha-2 code - The ID for the MediaSummary - The ID of the organization - The string containing the id of the State node. The id is a concatenation: StateName_CountryNmae(2CharCode) - The string containing the id of the City node. The id is a concatenation: CityName_StateName_CountryName(2CharCode) - The string containing the id of the Language node. The id is of the form 'Language_2-char-code (ISO-639-1)', e.g., Language_en for English - The ID of the brand

Implementation

@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix phun: <https://ontology.phunware.com/1.0/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix schema: <http://schema.org/> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix void: <http://rdfs.org/ns/void#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

phun:id a owl:DatatypeProperty ;
    rdfs:label "id" ;
    rdfs:comment "The ID (e.g., \"MC_Phunware DSP\") for the media channel",
        "The ID (e.g., \"PW_WifiAccessPoint_12:34:mg:23\") for the wifi access point",
        "The ID (e.g., \"PW_Zone_12:34:mg:23\") for the zone",
        "The ID for the MediaSummary",
        "The ID for the Place",
        "The ID of the brand",
        "The ID of the custom segment",
        "The ID of the organization",
        "The id of the postal code (postalcode_2charCountryCode).",
        "The string containing the id of the City node. The id is a concatenation: CityName_StateName_CountryName(2CharCode)",
        "The string containing the id of the CongressionalDistrict node. The id is a concatenation: CongressionalDistrictName_StateName_CountryName(2CharCode)",
        "The string containing the id of the Country node. The id is the ISO 3166-1 alpha-2 code",
        "The string containing the id of the Language node. The id is of the form 'Language_2-char-code (ISO-639-1)', e.g., Language_en for English",
        "The string containing the id of the State node. The id is a concatenation: StateName_CountryNmae(2CharCode)" ;
    rdfs:domain phun:Brand,
        phun:City,
        phun:CongressionalDistrict,
        phun:Country,
        phun:CustomSegment,
        phun:Language,
        phun:Media,
        phun:MediaChannel,
        phun:MediaSummary,
        phun:Org,
        phun:Place,
        phun:PostalCode,
        phun:State,
        phun:WiFiAccessPoint,
        phun:Zone ;
    rdfs:isDefinedBy phun: ;
    rdfs:range xsd:string .