@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix schema: <https://schema.org/> .
@prefix marca: <https://bendevoficial.com/ontology#> .

<https://bendevoficial.com/ontology> a owl:Ontology ;
  rdfs:label "Bendev Oficial Ontology" ;
  rdfs:comment "Ontology describing Bendev Junior, values, books, and projects." ;
  owl:versionInfo "1.0.0" ;
  rdfs:seeAlso <https://bendevoficial.com> .

marca:Creator a owl:Class .
marca:Project a owl:Class .
marca:Book a owl:Class .
marca:Value a owl:Class .

marca:hasProject a owl:ObjectProperty ;
  rdfs:domain marca:Creator ;
  rdfs:range marca:Project .

marca:hasBook a owl:ObjectProperty ;
  rdfs:domain marca:Creator ;
  rdfs:range marca:Book .

marca:hasValue a owl:ObjectProperty ;
  rdfs:domain marca:Creator ;
  rdfs:range marca:Value .

marca:tagline a owl:DatatypeProperty ;
  rdfs:domain marca:Creator ;
  rdfs:range xsd:string .

<https://bendevoficial.com/#person> a marca:Creator ;
  foaf:name "Bendev Junior" ;
  foaf:givenName "Benedito" ;
  foaf:familyName "Manoel da Silva Júnior" ;
  schema:jobTitle "Programmer, Writer, Martial Artist" ;
  foaf:homepage <https://bendevoficial.com> ;
  foaf:img <https://bendevoficial.com/images/bendev.jpg> ;
  foaf:based_near "Poconé, MT, Brazil" ;
  marca:tagline "Code. Mind. Movement." ;
  foaf:account <https://github.com/bendevjunior> , <https://linkedin.com/in/bendevjunior> , <https://instagram.com/bendevoficial> .

marca:Disciplina a skos:Concept ;
  skos:prefLabel "Disciplina" .
marca:Clareza a skos:Concept ;
  skos:prefLabel "Clareza" .
marca:Inovacao a skos:Concept ;
  skos:prefLabel "Inovação" .
marca:Saude a skos:Concept ;
  skos:prefLabel "Saúde" .
