SlideShare a Scribd company logo
UNIVERSIDAD TÉCNICA PARTICULAR DE LOJA La Universidad Católica de Loja TripletasRDF Sistemas Basados en el Conocimiento Adriana B. Macas E. Email: abme_1013@hotmail.com Telf:  084855576
RDF (ResourceDescription 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: Sistemas Informáticos
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
<rdf:RDFxmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:default="http://localhost/default#"> <owl:Classrdf:about="http://localhost/default#Computers">   <rdfs:subClassOfrdf:resource="#Sistemas_Informaticos" />    </owl:Class> </rdf:RDF> TripletasRDF Class: Computers Código RDF
Tripletas RDF Elementos RDF
Gráfico del modelo de datos Tripletas RDF
<rdf:RDFxmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:default="http://localhost/default#"> <owl:Classrdf:about="http://localhost/default#Hardware">   <rdfs:subClassOfrdf:resource="http://localhost/default#Computers" />  <rdfs:subClassOf> <owl:Restriction>   <owl:onPropertyrdf:resource="http://localhost/default#Version" />    <owl:cardinalityrdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>    </owl:Restriction>   </rdfs:subClassOf> Tripletas RDF Class:Hardware Código RDF
<rdfs:subClassOf> <owl:Restriction>   <owl:onPropertyrdf:resource="http://localhost/default#Producer" />    <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#Year" />    <owl:cardinalityrdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>    </owl:Restriction>   </rdfs:subClassOf>   </owl:Class> </rdf:RDF>  Tripletas RDF Class:Hardware (Cont….)
Tripletas RDF Elementos RDF
Gráfico del modelo de datos Tripletas RDF
<rdf:RDFxmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:default="http://localhost/default#"> <owl:Classrdf:about="http://localhost/default#Software">   <rdfs:subClassOfrdf:resource="http://localhost/default#Computers" />  <rdfs:subClassOf> <owl:Restriction>   <owl:onPropertyrdf:resource="http://localhost/default#Distribution" />    <owl:cardinalityrdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>    </owl:Restriction>   </rdfs:subClassOf> <rdfs:subClassOf> Tripletas RDF Class: Software Código RDF
<owl:Restriction>   <owl:onPropertyrdf:resource="http://localhost/default#Version" />    <owl:cardinality rdf: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#Year" />    <owl:cardinalityrdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>    </owl:Restriction>   </rdfs:subClassOf>   </owl:Class> </rdf:RDF> Tripletas RDF Class: Software (Cont….)
Tripletas RDF Elementos RDF
Tripletas RDF
Gráfico del modelo de datos Tripletas RDF
Tripletas RDF Class: Laptops Código RDF <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#">    <owl:Classrdf:about="http://localhost/default#Laptops">         <rdfs:subClassOfrdf:resource="http://localhost/default#Computers" />              <rdfs:subClassOf>                  <owl:Restriction>                       <owl:onPropertyrdf:resource="http://localhost/default#ProductNumber" />                             <owl:cardinalityrdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>                   </owl:Restriction>             </rdfs:subClassOf>         <rdfs:subClassOf>
Tripletas RDF Class: Laptops Código RDF              <owl: Restriction>                      <owl:onPropertyrdf:resource="http://localhost/default#Series" />                            <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#Model" />                            <owl:cardinalityrdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>                </owl:Restriction>         </rdfs:subClassOf>     </owl:Class> </rdf:RDF>
Tripletas RDF Elementos RDF
Tripletas RDF Elementos RDF
Gráfico del modelo de datos Tripletas RDF
Tripletas RDF Class: Servers Código RDF <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#">     <owl:Classrdf:about="http://localhost/default#Servers">         <rdfs:subClassOfrdf:resource="http://localhost/default#Computers"/>         <rdfs:subClassOf>             <owl:Restriction>                 <owl:onPropertyrdf:resource="http://localhost/default#Series"/>                 <owl:cardinalityrdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> </owl:Restriction>
Tripletas RDF Class: Servers Código RDF </owl:Restriction>         </rdfs:subClassOf>         <rdfs:subClassOf>             <owl:Restriction>                 <owl:onPropertyrdf:resource="http://localhost/default#Patent"/>                 <owl:cardinalityrdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>             </owl:Restriction>         </rdfs:subClassOf>     </owl:Class> </rdf:RDF>
Tripletas RDF Elementos RDF
Gráfico del modelo de datos Tripletas RDF 07/2009 Diego Herrera 28
OBJECT  PROPERTIES 07/2009 Diego Herrera 29
Tripletas RDF ObjectProperties:IsA Código RDF <rdf:RDFxmlns="file:/C:/Documents%20and%20Settings/Administrador/Mis%20documentos/UTPL/SISTEMAS%20INFORMATICOS%20Y%20COMPUTACION/X%20CICLO/Sistemas%20Basados%20en%20el%20Conocimiento/Proyecto%20Final/INFORMATICA_v3.owl#”   xml:base="file:/C:/Documents%20and%20Settings/Administrador/Mis%20documentos/UTPL/SISTEMAS%20INFORMATICOS%20Y%20COMPUTACION/X%20CICLO/Sistemas%20Basados%20en%20el%20Conocimiento/Proyecto%20Final/INFORMATICA_v3.owl“ xmlns:INFORMATICA_v3="file:/C:/Documents%20and%20Settings/Administrador/Mis%20documentos/UTPL/SISTEMAS%20INFORMATICOS%20Y%20COMPUTACION/X%20CICLO/Sistemas%20Basados%20en%20el%20Conocimiento/Proyecto%20Final/INFORMATICA_v3.owl#" 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#">   <owl:ObjectPropertyrdf:about="http://localhost/default#IsA">   <rdf:typerdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty" />    <rdfs:domainrdf:resource="http://localhost/default#Hardware" />    <owl:inverseOfrdf:resource="http://localhost/default#IsA" />    <rdfs:rangerdf:resource="http://localhost/default#tangible%20component" />    </owl:ObjectProperty> </rdf:RDF>
Tripletas RDF Elementos RDF
Gráfico del modelo de datos Tripletas RDF
Tripletas RDF ObjectProperties:IsPartOf Código RDF <rdf:RDFxmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:default="http://localhost/default#"> <owl:ObjectPropertyrdf:about="http://localhost/default#IsPartOf">   <rdf:typerdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty" />    <rdfs:rangerdf:resource="http://localhost/default#Computers" />    <rdfs:domainrdf:resource="http://localhost/default#Hardware" />    <rdfs:domainrdf:resource="http://localhost/default#Software" />    <owl:inverseOfrdf:resource="http://localhost/default#has" />    </owl:ObjectProperty> </rdf:RDF>
Tripletas RDF Elementos RDF
Gráfico del modelo de datos Tripletas RDF
Tripletas RDF ObjectProperties:supportOf Código RDF <rdf:RDFxmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:default="http://localhost/default#"> <owl:ObjectPropertyrdf:about="http://localhost/default#SupportOf">   <rdfs:domainrdf:resource="#Sistemas_Informaticos" />    <rdfs:rangerdf:resource="http://localhost/default#Computers" />    </owl:ObjectProperty> </rdf:RDF>
Tripletas RDF Elementos RDF
Gráfico del modelo de datos Tripletas RDF
Tripletas RDF ObjectProperties: IsResponsable Código RDF <rdf:RDFxmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:default="http://localhost/default#"> <owl:ObjectPropertyrdf:about="http://localhost/default#IsResponsable">   <rdf:typerdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty" />    <rdfs:rangerdf:resource="#Sistemas_Informaticos" />    <rdfs:domainrdf:resource="http://localhost/default#The%20automated%20processing%20of%20information" />    </owl:ObjectProperty> </rdf:RDF>
Tripletas RDF Elementos RDF
Gráfico del modelo de datos Tripletas RDF
DATA PROPERTIES
Tripletas RDF Data Properties:Capacity Código RDF <rdf:RDFxmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:default="http://localhost/default#"> <owl:DatatypePropertyrdf:about="http://localhost/default#Capacity">   <rdfs:domainrdf:resource="http://localhost/default#Hardware" />    <rdfs:rangerdf:resource="http://www.w3.org/2001/XMLSchema#integer" />    </owl:DatatypeProperty> </rdf:RDF>
Tripletas RDF Elementos RDF
Gráfico del modelo de datos Tripletas RDF
Tripletas RDF Data Properties:Model Código RDF <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:default="http://localhost/default#"> <owl:DatatypePropertyrdf:about="http://localhost/default#Model">   <rdfs:domainrdf:resource="http://localhost/default#Laptops" />    <rdfs:rangerdf:resource="http://www.w3.org/2001/XMLSchema#string" />    </owl:DatatypeProperty> </rdf:RDF>
Tripletas RDF Elementos RDF
Gráfico del modelo de datos Tripletas RDF
Tripletas RDF Data Properties:Patent Código RDF <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:default="http://localhost/default#"> <owl:DatatypePropertyrdf:about="http://localhost/default#Patent">   <rdfs:domainrdf:resource="http://localhost/default#Laptops" />    <rdfs:rangerdf:resource="http://www.w3.org/2001/XMLSchema#string" />    </owl:DatatypeProperty> </rdf:RDF>
Tripletas RDF Elementos RDF

More Related Content

Featured

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
Marius Sescu
 
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
Expeed Software
 
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
Pixeldarts
 
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
 
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
marketingartwork
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
Skeleton Technologies
 
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
Neil Kimberley
 
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)
contently
 
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
Albert Qian
 
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)
 
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
Search Engine Journal
 
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
SpeakerHub
 
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
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
Tessa Mero
 
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
Lily Ray
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
Rajiv Jayarajah, MAppComm, ACC
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
Christy Abraham Joy
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
Vit Horky
 
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
MindGenius
 
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...
RachelPearson36
 

Featured (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...
 

Tripleta Si

  • 1. UNIVERSIDAD TÉCNICA PARTICULAR DE LOJA La Universidad Católica de Loja TripletasRDF Sistemas Basados en el Conocimiento Adriana B. Macas E. Email: abme_1013@hotmail.com Telf: 084855576
  • 2. RDF (ResourceDescription 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
  • 9. RDF Ontología: Sistemas Informáticos
  • 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. <rdf:RDFxmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:default="http://localhost/default#"> <owl:Classrdf:about="http://localhost/default#Computers"> <rdfs:subClassOfrdf:resource="#Sistemas_Informaticos" /> </owl:Class> </rdf:RDF> TripletasRDF Class: Computers Código RDF
  • 14. Gráfico del modelo de datos Tripletas RDF
  • 15. <rdf:RDFxmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:default="http://localhost/default#"> <owl:Classrdf:about="http://localhost/default#Hardware"> <rdfs:subClassOfrdf:resource="http://localhost/default#Computers" /> <rdfs:subClassOf> <owl:Restriction> <owl:onPropertyrdf:resource="http://localhost/default#Version" /> <owl:cardinalityrdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> </owl:Restriction> </rdfs:subClassOf> Tripletas RDF Class:Hardware Código RDF
  • 16. <rdfs:subClassOf> <owl:Restriction> <owl:onPropertyrdf:resource="http://localhost/default#Producer" /> <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#Year" /> <owl:cardinalityrdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> </owl:Restriction> </rdfs:subClassOf> </owl:Class> </rdf:RDF> Tripletas RDF Class:Hardware (Cont….)
  • 18.
  • 19. Gráfico del modelo de datos Tripletas RDF
  • 20. <rdf:RDFxmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:default="http://localhost/default#"> <owl:Classrdf:about="http://localhost/default#Software"> <rdfs:subClassOfrdf:resource="http://localhost/default#Computers" /> <rdfs:subClassOf> <owl:Restriction> <owl:onPropertyrdf:resource="http://localhost/default#Distribution" /> <owl:cardinalityrdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> </owl:Restriction> </rdfs:subClassOf> <rdfs:subClassOf> Tripletas RDF Class: Software Código RDF
  • 21. <owl:Restriction> <owl:onPropertyrdf:resource="http://localhost/default#Version" /> <owl:cardinality rdf: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#Year" /> <owl:cardinalityrdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> </owl:Restriction> </rdfs:subClassOf> </owl:Class> </rdf:RDF> Tripletas RDF Class: Software (Cont….)
  • 24. Gráfico del modelo de datos Tripletas RDF
  • 25. Tripletas RDF Class: Laptops Código RDF <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#"> <owl:Classrdf:about="http://localhost/default#Laptops"> <rdfs:subClassOfrdf:resource="http://localhost/default#Computers" /> <rdfs:subClassOf> <owl:Restriction> <owl:onPropertyrdf:resource="http://localhost/default#ProductNumber" /> <owl:cardinalityrdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> </owl:Restriction> </rdfs:subClassOf> <rdfs:subClassOf>
  • 26. Tripletas RDF Class: Laptops Código RDF <owl: Restriction> <owl:onPropertyrdf:resource="http://localhost/default#Series" /> <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#Model" /> <owl:cardinalityrdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> </owl:Restriction> </rdfs:subClassOf> </owl:Class> </rdf:RDF>
  • 29. Gráfico del modelo de datos Tripletas RDF
  • 30. Tripletas RDF Class: Servers Código RDF <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#"> <owl:Classrdf:about="http://localhost/default#Servers"> <rdfs:subClassOfrdf:resource="http://localhost/default#Computers"/> <rdfs:subClassOf> <owl:Restriction> <owl:onPropertyrdf:resource="http://localhost/default#Series"/> <owl:cardinalityrdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> </owl:Restriction>
  • 31. Tripletas RDF Class: Servers Código RDF </owl:Restriction> </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction> <owl:onPropertyrdf:resource="http://localhost/default#Patent"/> <owl:cardinalityrdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> </owl:Restriction> </rdfs:subClassOf> </owl:Class> </rdf:RDF>
  • 33. Gráfico del modelo de datos Tripletas RDF 07/2009 Diego Herrera 28
  • 34. OBJECT PROPERTIES 07/2009 Diego Herrera 29
  • 35. Tripletas RDF ObjectProperties:IsA Código RDF <rdf:RDFxmlns="file:/C:/Documents%20and%20Settings/Administrador/Mis%20documentos/UTPL/SISTEMAS%20INFORMATICOS%20Y%20COMPUTACION/X%20CICLO/Sistemas%20Basados%20en%20el%20Conocimiento/Proyecto%20Final/INFORMATICA_v3.owl#” xml:base="file:/C:/Documents%20and%20Settings/Administrador/Mis%20documentos/UTPL/SISTEMAS%20INFORMATICOS%20Y%20COMPUTACION/X%20CICLO/Sistemas%20Basados%20en%20el%20Conocimiento/Proyecto%20Final/INFORMATICA_v3.owl“ xmlns:INFORMATICA_v3="file:/C:/Documents%20and%20Settings/Administrador/Mis%20documentos/UTPL/SISTEMAS%20INFORMATICOS%20Y%20COMPUTACION/X%20CICLO/Sistemas%20Basados%20en%20el%20Conocimiento/Proyecto%20Final/INFORMATICA_v3.owl#" 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#"> <owl:ObjectPropertyrdf:about="http://localhost/default#IsA"> <rdf:typerdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty" /> <rdfs:domainrdf:resource="http://localhost/default#Hardware" /> <owl:inverseOfrdf:resource="http://localhost/default#IsA" /> <rdfs:rangerdf:resource="http://localhost/default#tangible%20component" /> </owl:ObjectProperty> </rdf:RDF>
  • 37. Gráfico del modelo de datos Tripletas RDF
  • 38. Tripletas RDF ObjectProperties:IsPartOf Código RDF <rdf:RDFxmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:default="http://localhost/default#"> <owl:ObjectPropertyrdf:about="http://localhost/default#IsPartOf"> <rdf:typerdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty" /> <rdfs:rangerdf:resource="http://localhost/default#Computers" /> <rdfs:domainrdf:resource="http://localhost/default#Hardware" /> <rdfs:domainrdf:resource="http://localhost/default#Software" /> <owl:inverseOfrdf:resource="http://localhost/default#has" /> </owl:ObjectProperty> </rdf:RDF>
  • 40. Gráfico del modelo de datos Tripletas RDF
  • 41. Tripletas RDF ObjectProperties:supportOf Código RDF <rdf:RDFxmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:default="http://localhost/default#"> <owl:ObjectPropertyrdf:about="http://localhost/default#SupportOf"> <rdfs:domainrdf:resource="#Sistemas_Informaticos" /> <rdfs:rangerdf:resource="http://localhost/default#Computers" /> </owl:ObjectProperty> </rdf:RDF>
  • 43. Gráfico del modelo de datos Tripletas RDF
  • 44. Tripletas RDF ObjectProperties: IsResponsable Código RDF <rdf:RDFxmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:default="http://localhost/default#"> <owl:ObjectPropertyrdf:about="http://localhost/default#IsResponsable"> <rdf:typerdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty" /> <rdfs:rangerdf:resource="#Sistemas_Informaticos" /> <rdfs:domainrdf:resource="http://localhost/default#The%20automated%20processing%20of%20information" /> </owl:ObjectProperty> </rdf:RDF>
  • 46. Gráfico del modelo de datos Tripletas RDF
  • 48. Tripletas RDF Data Properties:Capacity Código RDF <rdf:RDFxmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:default="http://localhost/default#"> <owl:DatatypePropertyrdf:about="http://localhost/default#Capacity"> <rdfs:domainrdf:resource="http://localhost/default#Hardware" /> <rdfs:rangerdf:resource="http://www.w3.org/2001/XMLSchema#integer" /> </owl:DatatypeProperty> </rdf:RDF>
  • 50. Gráfico del modelo de datos Tripletas RDF
  • 51. Tripletas RDF Data Properties:Model Código RDF <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:default="http://localhost/default#"> <owl:DatatypePropertyrdf:about="http://localhost/default#Model"> <rdfs:domainrdf:resource="http://localhost/default#Laptops" /> <rdfs:rangerdf:resource="http://www.w3.org/2001/XMLSchema#string" /> </owl:DatatypeProperty> </rdf:RDF>
  • 53. Gráfico del modelo de datos Tripletas RDF
  • 54. Tripletas RDF Data Properties:Patent Código RDF <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:default="http://localhost/default#"> <owl:DatatypePropertyrdf:about="http://localhost/default#Patent"> <rdfs:domainrdf:resource="http://localhost/default#Laptops" /> <rdfs:rangerdf:resource="http://www.w3.org/2001/XMLSchema#string" /> </owl:DatatypeProperty> </rdf:RDF>
  • 56. Gráfico del modelo de datos Tripletas RDF
  • 57. Tripletas RDF Data Properties:ProductNumber Código RDF <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:default="http://localhost/default#"> <owl:DatatypePropertyrdf:about="http://localhost/default#ProductNumber"> <rdfs:domainrdf:resource="http://localhost/default#Laptops" /> <rdfs:rangerdf:resource="http://www.w3.org/2001/XMLSchema#integer" /> </owl:DatatypeProperty> </rdf:RDF>
  • 59. Gráfico del modelo de datos Tripletas RDF
  • 60. FIN