A demo ontology created for Kia retailers, built in 2018 for Semantic SEO Solutions, updated and tested in December 2020.
The ontology imports the Kia Car Options Ontology.
Status: incomplete

Used technologies:
-
OWL (Web Ontology Language)
-
XML/RDF
-
Protege
SparQL Query to get all mades of Kia Soul Eve
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX owl: <http://www.w3.org/2002/07/owl#> PREFIX xsd: <http://www.w3.org/2001/XMLSchema#> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX ko: <http://iurianu.rocks/ontology/ko.owl#> PREFIX kia: <http://iurianu.rocks/ontology/kia.owl#> SELECT ?x FROM <http://iurianu.rocks/ontology/kia.owl#> WHERE { ?x ko:isMadeOf kia:SoulEve . }
SparQL Query to get the labels for all the mades of Kia Soul Ev Plus that have the SFP option
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX owl: <http://www.w3.org/2002/07/owl#> PREFIX xsd: <http://www.w3.org/2001/XMLSchema#> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX ko: <http://iurianu.rocks/ontology/ko.owl#> PREFIX kia: <http://iurianu.rocks/ontology/kia.owl#> SELECT ?label ?option FROM <http://iurianu.rocks/ontology/kia.owl#> WHERE { ?x ko:isMadeOf kia:SoulEvPlus . ?x ko:optionValue ko:SFP . ?x rdfs:label ?label . }
SparQL Query to get models for each Production Line
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX owl: <http://www.w3.org/2002/07/owl#> PREFIX xsd: <http://www.w3.org/2001/XMLSchema#> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX ko: <http://iurianu.rocks/ontology/ko.owl#> PREFIX kia: <http://iurianu.rocks/ontology/kia.owl#> SELECT ?x ?model FROM <http://iurianu.rocks/ontology/kia.owl#> WHERE { ?x rdf:type kia:ProductionLine . ?x ko:hasModel ?model . }
OWL Ontology for Kia Retailers