schema:name leaf node


URI

http://schema.org/name

Label

name

Description

The name of the brand. - The name of the WiFiAccessPoint. - The string containing the geohash of the GeoHash node. - The name of the custom segment. - The name of the organization. - The name of the mobile application. - The string containing the name of the City node. - The string containing the ISO 639 name of the language - The name of the Zone in a Place. - The string containing the name of the state (2 char) followed by a space and the CongressionalDistrict code (e.g. 'TX CD02'). - The name of the media channel. - Name of the Place - The string containing the name of the State node. - The string containing the name of the Country node. The name is the English short name (in Title Case), officially used by the ISO 3166 Maintenance Agency (ISO 3166/MA) corresponding to the ISO 3166-1 alpha-2 code

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#> .

schema:name a owl:DatatypeProperty ;
    rdfs:label "name" ;
    rdfs:comment "Name of the Place",
        "The name of the WiFiAccessPoint.",
        "The name of the Zone in a Place.",
        "The name of the brand.",
        "The name of the custom segment.",
        "The name of the media channel.",
        "The name of the mobile application.",
        "The name of the organization.",
        "The string containing the ISO 639 name of the language",
        "The string containing the geohash of the GeoHash node.",
        "The string containing the name of the City node.",
        "The string containing the name of the Country node. The name is the English short name (in Title Case), officially used by the ISO 3166 Maintenance Agency (ISO 3166/MA) corresponding to the ISO 3166-1 alpha-2 code",
        "The string containing the name of the State node.",
        "The string containing the name of the state (2 char) followed by a space and the CongressionalDistrict code (e.g. 'TX CD02')." ;
    rdfs:domain phun:Brand,
        phun:City,
        phun:CongressionalDistrict,
        phun:Country,
        phun:CustomSegment,
        phun:GeoHash,
        phun:Language,
        phun:MediaChannel,
        phun:MobileApplication,
        phun:Org,
        phun:Place,
        phun:State,
        phun:WiFiAccessPoint,
        phun:Zone ;
    rdfs:isDefinedBy schema:name ;
    rdfs:range xsd:string .