SlideShare una empresa de Scribd logo
1 de 36
UNIVERSIDAD   TÉCNICA PARTICULAR DE LOJA La Universidad Católica de Loja Sistemas Basados en el Conocimiento TripletasRDF Jhoanna X. Simancas F.
RDF RDF (Resource Description Framework) RDF está basado en la idea de identificar los recursos en la Web usando los Uniform Resource Identifiers o URIs, y describiendo los recursos en términos de propiedades simples y valores. Una descripción RDF es un conjunto de proposiciones simples (también llamadas sentencias o declaraciones) y una proposición se conoce también como una tripleta, porque está compuesta de 3 cosas: un sujeto, un predicado y un objeto. Estas sentencias se pueden representar formalmente usando la tripleta (sujeto, predicado, objeto), pero existe otra forma de notación que es mostrar una sentencia mediante grafos dirigidos. Así, en RDF es posible representar declaraciones simples sobre los recursos como un grafo (graph) de nodos y arcos que representan los recursos,  y sus propiedades y valores.
Elementos de una tripleta Los 3 elementos de una tripleta se representan mediante URIs. Donde: ,[object Object]
Predicate y Property son sinónimos
Nodos sin nombre son nodos en blanco
Subject puede ser una referencia URI o nodos en blanco
Predicate puede ser una referencia URI
Object puede ser una referencia URI, literal o un nodo en blanco.RDF
RDF Ontología: Redes Sociales
DESCRIPCIÓN DE TRIPLETAS Para poder realizar la validación de las tripletas tanto RDF como OWL se tome como referencia de la siguiente dirección: http://www.w3.org/RDF/Validator
CLASES
Tripletas RDF Class: Humana , MMORPG, Plataforma  Código RDF <rdf:RDFxmlns="http://localhost/default#" xml:base="file:/C:/Documents%20and%20Settings/Jhoanna/Escritorio/Redes_Sociales_V2.2.owl"      xmlns:n1="http://www.cc.uah.es/ie/ont/lom2owl#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:default="http://localhost/default#"      xmlns:owl2xml="http://www.w3.org/2006/12/owl2-xml#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:xsd="http://www.w3.org/2001/XMLSchema#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:daml="http://www.daml.org/2001/03/daml+oil#"      xmlns:Redes_Sociales_V2="file:/C:/Documents%20and%20Settings/jhoanna/Escritorio/Redes_Sociales_V2.2.owl#"> <owl:Classrdf:about="http://localhost/default#Humana">   <rdfs:subClassOfrdf:resource="http://localhost/default#sujetoRelación" />    </owl:Class> <owl:Classrdf:about="http://localhost/default#MMORPG">   <rdfs:subClassOfrdf:resource="http://localhost/default#Plataforma" />    </owl:Class> <owl:Classrdf:about="http://localhost/default#Plataforma">   <rdfs:subClassOfrdf:resource="http://localhost/default#redSocial" />    </owl:Class> </rdf:RDF>
Tripletas RDF Elementos RDF
Gráfico del modelo de datos Tripletas RDF
Tripletas RDF Class:Profesional, Web, Academico, Actividad Código RDF <rdf:RDFxmlns="http://localhost/default#" xml:base="file:/C:/Documents%20and%20Settings/Jhoanna/Escritorio/Redes_Sociales_V2.2.owl"      xmlns:n1="http://www.cc.uah.es/ie/ont/lom2owl#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:default="http://localhost/default#"      xmlns:owl2xml="http://www.w3.org/2006/12/owl2-xml#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:xsd="http://www.w3.org/2001/XMLSchema#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:daml="http://www.daml.org/2001/03/daml+oil#"      xmlns:Redes_Sociales_V2="file:/C:/Documents%20and%20Settings/jhoanna/Escritorio/Redes_Sociales_V2.2.owl#"> <owl:Classrdf:about="http://localhost/default#Profesional">   <rdfs:subClassOfrdf:resource="http://localhost/default#publicoObjetivo" />    </owl:Class> <owl:Classrdf:about="http://localhost/default#Web">   <rdfs:subClassOfrdf:resource="http://localhost/default#Plataforma" />    </owl:Class> <owl:Classrdf:about="http://localhost/default#academico">   <rdfs:subClassOfrdf:resource="http://localhost/default#actividad" />    </owl:Class>  <owl:Classrdf:about="http://localhost/default#actividad" />  </rdf:RDF>
Tripletas RDF Elementos RDF
Gráfico del modelo de datos Tripletas RDF
Tripletas RDF Class: ActividadProfesional, Afición,cine Código RDF <rdf:RDFxmlns="http://localhost/default#" xml:base="file:/C:/Documents%20and%20Settings/Jhoanna/Escritorio/Redes_Sociales_V2.2.owl"      xmlns:n1="http://www.cc.uah.es/ie/ont/lom2owl#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:default="http://localhost/default#"      xmlns:owl2xml="http://www.w3.org/2006/12/owl2-xml#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:xsd="http://www.w3.org/2001/XMLSchema#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:daml="http://www.daml.org/2001/03/daml+oil#"      xmlns:Redes_Sociales_V2="file:/C:/Documents%20and%20Settings/jhoanna/Escritorio/Redes_Sociales_V2.2.owl#"> <owl:Classrdf:about="http://localhost/default#actividadProfesional">   <rdfs:subClassOfrdf:resource="http://localhost/default#actividad" />    </owl:Class> <owl:Classrdf:about="http://localhost/default#aficion" />  <owl:Classrdf:about="http://localhost/default#archivo">   <rdfs:subClassOfrdf:resource="http://localhost/default#contenido" />    </owl:Class> <owl:Classrdf:about="http://localhost/default#cine">   <rdfs:subClassOfrdf:resource="http://localhost/default#aficion" />    </owl:Class> <owl:Classrdf:about="http://localhost/default#contenido" />  </rdf:RDF>
Tripletas RDF Elementos RDF
Tripletas RDF Gráfico del modelo de datos
Tripletas RDF Class: Perfil Social rdf:RDFxmlns="http://localhost/default#" xml:base="file:/C:/Documents%20and%20Settings/Jhoanna/Escritorio/Redes_Sociales_V2.2.owl" xmlns:n1="http://www.cc.uah.es/ie/ont/lom2owl#"    xmlns:owl2xml="http://www.w3.org/2006/12/owl2-xml#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:xsd="http://www.w3.org/2001/XMLSchema#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:daml="http://www.daml.org/2001/03/daml+oil#" xmlns:Redes_Sociales_V2="file:/C:/Documents%20and%20Settings/jhoanna/Escritorio/Redes_Sociales_V2.2.owl#"> <owl:Classrdf:about="http://localhost/default#perfilSocial"> <rdfs:subClassOf> <owl:Restriction>   <owl:onPropertyrdf:resource="http://localhost/default#nombre" />    <owl:minCardinalityrdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:minCardinality>    </owl:Restriction>   </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction>   <owl:onPropertyrdf:resource="http://localhost/default#sexo" />    <owl:cardinalityrdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>    </owl:Restriction>   </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction>   <owl:onPropertyrdf:resource="http://localhost/default#nacionalidad" />    <owl:minCardinalityrdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:minCardinality>    </owl:Restriction>   </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction>   <owl:onPropertyrdf:resource="http://localhost/default#edad" />    <owl:minCardinalityrdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:minCardinality>    </owl:Restriction>   </rdfs:subClassOf>   </owl:Class> </rdf:RDF>
ElementosRDF
Tripletas rdf Gráfico del modelo de datos
TripletasRDF Class: Red Social Código RDF <rdf:RDFxmlns="http://localhost/default#" xml:base="file:/C:/Documents%20and%20Settings/Jhoanna/Escritorio/Redes_Sociales_V2.2.owl"      xmlns:n1="http://www.cc.uah.es/ie/ont/lom2owl#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:default="http://localhost/default#"      xmlns:owl2xml="http://www.w3.org/2006/12/owl2-xml#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:xsd="http://www.w3.org/2001/XMLSchema#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:daml="http://www.daml.org/2001/03/daml+oil#"      xmlns:Redes_Sociales_V2="file:/C:/Documents%20and%20Settings/jhoanna/Escritorio/Redes_Sociales_V2.2.owl#"> <owl:Classrdf:about="http://localhost/default#redSocial"> <rdfs:subClassOf> <owl:Restriction>   <owl:onPropertyrdf:resource="http://localhost/default#nombre" />    <owl:cardinalityrdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>    </owl:Restriction>   </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction>   <owl:onPropertyrdf:resource="http://localhost/default#url" />    <owl:minCardinalityrdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:minCardinality>    </owl:Restriction>   </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction>   <owl:onPropertyrdf:resource="http://localhost/default#idioma" />    <owl:minCardinalityrdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:minCardinality>    </owl:Restriction>   </rdfs:subClassOf>  <rdfs:subClassOf> <owl:Restriction>   <owl:onPropertyrdf:resource="http://localhost/default#fechaCreacion" />    <owl:cardinalityrdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>    </owl:Restriction>   </rdfs:subClassOf>   </owl:Class> </rdf:RDF>
Tripletas RDF
Tripletas RDF Gráfico del modelo de datos
Gráfico del modelo de datos Tripletas RDF
INDIVIDUALS
Tripletas RDF Individual:flickr,Facebook,Plurk,hi5  Código RDF <rdf:RDFxmlns="http://localhost/default#" xml:base="file:/C:/Documents%20and%20Settings/Jhoanna/Escritorio/Redes_Sociales_V2.2.owl"      xmlns:n1="http://www.cc.uah.es/ie/ont/lom2owl#" xmlns:rdfs=http://www.w3.org/2000/01/rdf-schema# xmlns:xsd="http://www.w3.org/2001/XMLSchema#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:daml="http://www.daml.org/2001/03/daml+oil#"      xmlns:Redes_Sociales_V2="file:/C:/Documents%20and%20Settings/jhoanna/Escritorio/Redes_Sociales_V2.2.owl#"> <default:deContenidordf:about="http://localhost/default#Flickr" />  <default:sedentariardf:about="http://localhost/default#Plurk">   <visitas rdf:datatype="http://www.w3.org/2001/XMLSchema#int">189</visitas>    <plurksrdf:datatype="http://www.w3.org/2001/XMLSchema#int">200</plurks>    <karma rdf:datatype="http://www.w3.org/2001/XMLSchema#int">45</karma>    <default:nombrerdf:datatype="http://www.w3.org/2001/XMLSchema#string">Jhoanna</default:nombre>    <nicknamerdf:datatype="http://www.w3.org/2001/XMLSchema#string">jhoax</nickname>    </default:sedentaria> <default:Webrdf:about="http://localhost/default#hi5">   <imagenesrdf:datatype="http://www.w3.org/2001/XMLSchema#int" />    <num_amigosrdf:datatype="http://www.w3.org/2001/XMLSchema#int">1235</num_amigos>    <num_comentariosrdf:datatype="http://www.w3.org/2001/XMLSchema#int">132</num_comentarios>    <num_fivesrdf:datatype="http://www.w3.org/2001/XMLSchema#int">23</num_fives>    </default:Web> </rdf:RDF>
Tripletas RDF Elementos RDF
Tripletas RDF Gráfico del modelo de datos
Tripletas RDF Individual: Skout, Tuenti, Yuglo, linkedIn Código RDF <rdf:RDFxmlns="http://localhost/default#" xml:base="file:/C:/Documents%20and%20Settings/Jhoanna/Escritorio/Redes_Sociales_V2.2.owl"      xmlns:n1="http://www.cc.uah.es/ie/ont/lom2owl#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:default="http://localhost/default#"      xmlns:owl2xml="http://www.w3.org/2006/12/owl2-xml#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:xsd="http://www.w3.org/2001/XMLSchema#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:daml="http://www.daml.org/2001/03/daml+oil#"      xmlns:Redes_Sociales_V2="file:/C:/Documents%20and%20Settings/jhoanna/Escritorio/Redes_Sociales_V2.2.owl#"> <default:nomadardf:about="http://localhost/default#Skout" />   <default:Humanardf:about="http://localhost/default#Tuenti" />  <default:mixtardf:about="http://localhost/default#Yuglo" />  <default:Profesionalrdf:about="http://localhost/default#linkedIn" />  </rdf:RDF>
Tripletas RDF Elementos RDF
Gráfico del modelo de datos Tripletas RDF
OBJECTPROPERTIES
Tripletas RDF ObjectProperties:basado Código RDF <rdf:RDFxmlns="http://localhost/default#" xml:base="file:/C:/Documents%20and%20Settings/Jhoanna/Escritorio/Redes_Sociales_V2.2.owl"      xmlns:n1="http://www.cc.uah.es/ie/ont/lom2owl#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:default="http://localhost/default#"      xmlns:owl2xml="http://www.w3.org/2006/12/owl2-xml#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:xsd="http://www.w3.org/2001/XMLSchema#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:daml="http://www.daml.org/2001/03/daml+oil#"      xmlns:Redes_Sociales_V2="file:/C:/Documents%20and%20Settings/jhoanna/Escritorio/Redes_Sociales_V2.2.owl#"> <owl:ObjectPropertyrdf:about="http://localhost/default#basado">   <rdfs:domainrdf:resource="http://localhost/default#Web" />    </owl:ObjectProperty> </rdf:RDF>

Más contenido relacionado

Destacado

How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
ThinkNow
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
Kurio // The Social Media Age(ncy)
 

Destacado (20)

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPT
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage Engineerings
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 

Tripletas

  • 1. UNIVERSIDAD TÉCNICA PARTICULAR DE LOJA La Universidad Católica de Loja Sistemas Basados en el Conocimiento TripletasRDF Jhoanna X. Simancas F.
  • 2. RDF RDF (Resource Description Framework) RDF está basado en la idea de identificar los recursos en la Web usando los Uniform Resource Identifiers o URIs, y describiendo los recursos en términos de propiedades simples y valores. Una descripción RDF es un conjunto de proposiciones simples (también llamadas sentencias o declaraciones) y una proposición se conoce también como una tripleta, porque está compuesta de 3 cosas: un sujeto, un predicado y un objeto. Estas sentencias se pueden representar formalmente usando la tripleta (sujeto, predicado, objeto), pero existe otra forma de notación que es mostrar una sentencia mediante grafos dirigidos. Así, en RDF es posible representar declaraciones simples sobre los recursos como un grafo (graph) de nodos y arcos que representan los recursos,  y sus propiedades y valores.
  • 3.
  • 4. Predicate y Property son sinónimos
  • 5. Nodos sin nombre son nodos en blanco
  • 6. Subject puede ser una referencia URI o nodos en blanco
  • 7. Predicate puede ser una referencia URI
  • 8. Object puede ser una referencia URI, literal o un nodo en blanco.RDF
  • 10. DESCRIPCIÓN DE TRIPLETAS Para poder realizar la validación de las tripletas tanto RDF como OWL se tome como referencia de la siguiente dirección: http://www.w3.org/RDF/Validator
  • 12. Tripletas RDF Class: Humana , MMORPG, Plataforma Código RDF <rdf:RDFxmlns="http://localhost/default#" xml:base="file:/C:/Documents%20and%20Settings/Jhoanna/Escritorio/Redes_Sociales_V2.2.owl" xmlns:n1="http://www.cc.uah.es/ie/ont/lom2owl#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:default="http://localhost/default#" xmlns:owl2xml="http://www.w3.org/2006/12/owl2-xml#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:xsd="http://www.w3.org/2001/XMLSchema#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:daml="http://www.daml.org/2001/03/daml+oil#" xmlns:Redes_Sociales_V2="file:/C:/Documents%20and%20Settings/jhoanna/Escritorio/Redes_Sociales_V2.2.owl#"> <owl:Classrdf:about="http://localhost/default#Humana"> <rdfs:subClassOfrdf:resource="http://localhost/default#sujetoRelación" /> </owl:Class> <owl:Classrdf:about="http://localhost/default#MMORPG"> <rdfs:subClassOfrdf:resource="http://localhost/default#Plataforma" /> </owl:Class> <owl:Classrdf:about="http://localhost/default#Plataforma"> <rdfs:subClassOfrdf:resource="http://localhost/default#redSocial" /> </owl:Class> </rdf:RDF>
  • 14. Gráfico del modelo de datos Tripletas RDF
  • 15. Tripletas RDF Class:Profesional, Web, Academico, Actividad Código RDF <rdf:RDFxmlns="http://localhost/default#" xml:base="file:/C:/Documents%20and%20Settings/Jhoanna/Escritorio/Redes_Sociales_V2.2.owl" xmlns:n1="http://www.cc.uah.es/ie/ont/lom2owl#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:default="http://localhost/default#" xmlns:owl2xml="http://www.w3.org/2006/12/owl2-xml#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:xsd="http://www.w3.org/2001/XMLSchema#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:daml="http://www.daml.org/2001/03/daml+oil#" xmlns:Redes_Sociales_V2="file:/C:/Documents%20and%20Settings/jhoanna/Escritorio/Redes_Sociales_V2.2.owl#"> <owl:Classrdf:about="http://localhost/default#Profesional"> <rdfs:subClassOfrdf:resource="http://localhost/default#publicoObjetivo" /> </owl:Class> <owl:Classrdf:about="http://localhost/default#Web"> <rdfs:subClassOfrdf:resource="http://localhost/default#Plataforma" /> </owl:Class> <owl:Classrdf:about="http://localhost/default#academico"> <rdfs:subClassOfrdf:resource="http://localhost/default#actividad" /> </owl:Class> <owl:Classrdf:about="http://localhost/default#actividad" /> </rdf:RDF>
  • 17. Gráfico del modelo de datos Tripletas RDF
  • 18. Tripletas RDF Class: ActividadProfesional, Afición,cine Código RDF <rdf:RDFxmlns="http://localhost/default#" xml:base="file:/C:/Documents%20and%20Settings/Jhoanna/Escritorio/Redes_Sociales_V2.2.owl" xmlns:n1="http://www.cc.uah.es/ie/ont/lom2owl#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:default="http://localhost/default#" xmlns:owl2xml="http://www.w3.org/2006/12/owl2-xml#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:xsd="http://www.w3.org/2001/XMLSchema#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:daml="http://www.daml.org/2001/03/daml+oil#" xmlns:Redes_Sociales_V2="file:/C:/Documents%20and%20Settings/jhoanna/Escritorio/Redes_Sociales_V2.2.owl#"> <owl:Classrdf:about="http://localhost/default#actividadProfesional"> <rdfs:subClassOfrdf:resource="http://localhost/default#actividad" /> </owl:Class> <owl:Classrdf:about="http://localhost/default#aficion" /> <owl:Classrdf:about="http://localhost/default#archivo"> <rdfs:subClassOfrdf:resource="http://localhost/default#contenido" /> </owl:Class> <owl:Classrdf:about="http://localhost/default#cine"> <rdfs:subClassOfrdf:resource="http://localhost/default#aficion" /> </owl:Class> <owl:Classrdf:about="http://localhost/default#contenido" /> </rdf:RDF>
  • 20. Tripletas RDF Gráfico del modelo de datos
  • 21. Tripletas RDF Class: Perfil Social rdf:RDFxmlns="http://localhost/default#" xml:base="file:/C:/Documents%20and%20Settings/Jhoanna/Escritorio/Redes_Sociales_V2.2.owl" xmlns:n1="http://www.cc.uah.es/ie/ont/lom2owl#" xmlns:owl2xml="http://www.w3.org/2006/12/owl2-xml#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:xsd="http://www.w3.org/2001/XMLSchema#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:daml="http://www.daml.org/2001/03/daml+oil#" xmlns:Redes_Sociales_V2="file:/C:/Documents%20and%20Settings/jhoanna/Escritorio/Redes_Sociales_V2.2.owl#"> <owl:Classrdf:about="http://localhost/default#perfilSocial"> <rdfs:subClassOf> <owl:Restriction> <owl:onPropertyrdf:resource="http://localhost/default#nombre" /> <owl:minCardinalityrdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:minCardinality> </owl:Restriction> </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction> <owl:onPropertyrdf:resource="http://localhost/default#sexo" /> <owl:cardinalityrdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> </owl:Restriction> </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction> <owl:onPropertyrdf:resource="http://localhost/default#nacionalidad" /> <owl:minCardinalityrdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:minCardinality> </owl:Restriction> </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction> <owl:onPropertyrdf:resource="http://localhost/default#edad" /> <owl:minCardinalityrdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:minCardinality> </owl:Restriction> </rdfs:subClassOf> </owl:Class> </rdf:RDF>
  • 23. Tripletas rdf Gráfico del modelo de datos
  • 24. TripletasRDF Class: Red Social Código RDF <rdf:RDFxmlns="http://localhost/default#" xml:base="file:/C:/Documents%20and%20Settings/Jhoanna/Escritorio/Redes_Sociales_V2.2.owl" xmlns:n1="http://www.cc.uah.es/ie/ont/lom2owl#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:default="http://localhost/default#" xmlns:owl2xml="http://www.w3.org/2006/12/owl2-xml#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:xsd="http://www.w3.org/2001/XMLSchema#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:daml="http://www.daml.org/2001/03/daml+oil#" xmlns:Redes_Sociales_V2="file:/C:/Documents%20and%20Settings/jhoanna/Escritorio/Redes_Sociales_V2.2.owl#"> <owl:Classrdf:about="http://localhost/default#redSocial"> <rdfs:subClassOf> <owl:Restriction> <owl:onPropertyrdf:resource="http://localhost/default#nombre" /> <owl:cardinalityrdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> </owl:Restriction> </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction> <owl:onPropertyrdf:resource="http://localhost/default#url" /> <owl:minCardinalityrdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:minCardinality> </owl:Restriction> </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction> <owl:onPropertyrdf:resource="http://localhost/default#idioma" /> <owl:minCardinalityrdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:minCardinality> </owl:Restriction> </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction> <owl:onPropertyrdf:resource="http://localhost/default#fechaCreacion" /> <owl:cardinalityrdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> </owl:Restriction> </rdfs:subClassOf> </owl:Class> </rdf:RDF>
  • 26. Tripletas RDF Gráfico del modelo de datos
  • 27. Gráfico del modelo de datos Tripletas RDF
  • 29. Tripletas RDF Individual:flickr,Facebook,Plurk,hi5 Código RDF <rdf:RDFxmlns="http://localhost/default#" xml:base="file:/C:/Documents%20and%20Settings/Jhoanna/Escritorio/Redes_Sociales_V2.2.owl" xmlns:n1="http://www.cc.uah.es/ie/ont/lom2owl#" xmlns:rdfs=http://www.w3.org/2000/01/rdf-schema# xmlns:xsd="http://www.w3.org/2001/XMLSchema#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:daml="http://www.daml.org/2001/03/daml+oil#" xmlns:Redes_Sociales_V2="file:/C:/Documents%20and%20Settings/jhoanna/Escritorio/Redes_Sociales_V2.2.owl#"> <default:deContenidordf:about="http://localhost/default#Flickr" /> <default:sedentariardf:about="http://localhost/default#Plurk"> <visitas rdf:datatype="http://www.w3.org/2001/XMLSchema#int">189</visitas> <plurksrdf:datatype="http://www.w3.org/2001/XMLSchema#int">200</plurks> <karma rdf:datatype="http://www.w3.org/2001/XMLSchema#int">45</karma> <default:nombrerdf:datatype="http://www.w3.org/2001/XMLSchema#string">Jhoanna</default:nombre> <nicknamerdf:datatype="http://www.w3.org/2001/XMLSchema#string">jhoax</nickname> </default:sedentaria> <default:Webrdf:about="http://localhost/default#hi5"> <imagenesrdf:datatype="http://www.w3.org/2001/XMLSchema#int" /> <num_amigosrdf:datatype="http://www.w3.org/2001/XMLSchema#int">1235</num_amigos> <num_comentariosrdf:datatype="http://www.w3.org/2001/XMLSchema#int">132</num_comentarios> <num_fivesrdf:datatype="http://www.w3.org/2001/XMLSchema#int">23</num_fives> </default:Web> </rdf:RDF>
  • 31. Tripletas RDF Gráfico del modelo de datos
  • 32. Tripletas RDF Individual: Skout, Tuenti, Yuglo, linkedIn Código RDF <rdf:RDFxmlns="http://localhost/default#" xml:base="file:/C:/Documents%20and%20Settings/Jhoanna/Escritorio/Redes_Sociales_V2.2.owl" xmlns:n1="http://www.cc.uah.es/ie/ont/lom2owl#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:default="http://localhost/default#" xmlns:owl2xml="http://www.w3.org/2006/12/owl2-xml#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:xsd="http://www.w3.org/2001/XMLSchema#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:daml="http://www.daml.org/2001/03/daml+oil#" xmlns:Redes_Sociales_V2="file:/C:/Documents%20and%20Settings/jhoanna/Escritorio/Redes_Sociales_V2.2.owl#"> <default:nomadardf:about="http://localhost/default#Skout" /> <default:Humanardf:about="http://localhost/default#Tuenti" /> <default:mixtardf:about="http://localhost/default#Yuglo" /> <default:Profesionalrdf:about="http://localhost/default#linkedIn" /> </rdf:RDF>
  • 34. Gráfico del modelo de datos Tripletas RDF
  • 36. Tripletas RDF ObjectProperties:basado Código RDF <rdf:RDFxmlns="http://localhost/default#" xml:base="file:/C:/Documents%20and%20Settings/Jhoanna/Escritorio/Redes_Sociales_V2.2.owl" xmlns:n1="http://www.cc.uah.es/ie/ont/lom2owl#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:default="http://localhost/default#" xmlns:owl2xml="http://www.w3.org/2006/12/owl2-xml#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:xsd="http://www.w3.org/2001/XMLSchema#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:daml="http://www.daml.org/2001/03/daml+oil#" xmlns:Redes_Sociales_V2="file:/C:/Documents%20and%20Settings/jhoanna/Escritorio/Redes_Sociales_V2.2.owl#"> <owl:ObjectPropertyrdf:about="http://localhost/default#basado"> <rdfs:domainrdf:resource="http://localhost/default#Web" /> </owl:ObjectProperty> </rdf:RDF>
  • 38. Gráfico del modelo de datos Tripletas RDF
  • 39. Tripletas RDF ObjectProperties: fomentaRelaciones, sincroniza Código RDF <rdf:RDFxmlns="http://localhost/default#" xml:base="file:/C:/Documents%20and%20Settings/Jhoanna/Escritorio/Redes_Sociales_V2.2.owl" xmlns:n1="http://www.cc.uah.es/ie/ont/lom2owl#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:default="http://localhost/default#" xmlns:owl2xml="http://www.w3.org/2006/12/owl2-xml#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:xsd="http://www.w3.org/2001/XMLSchema#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:daml="http://www.daml.org/2001/03/daml+oil#" xmlns:Redes_Sociales_V2="file:/C:/Documents%20and%20Settings/jhoanna/Escritorio/Redes_Sociales_V2.2.owl#"> <owl:ObjectPropertyrdf:about="http://localhost/default#sincroniza"> <rdf:typerdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty" /> </owl:ObjectProperty> <owl:ObjectPropertyrdf:about="http://localhost/default#fomentaRelaciones"> <rdfs:rangerdf:resource="http://localhost/default#actividadProfesional" /> <rdfs:domainrdf:resource="http://localhost/default#mixta" /> </owl:ObjectProperty> </rdf:RDF>
  • 41. Gráfico del modelo de datos Tripletas RDF