forked from cesoriano/Curso2014-2015
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathk3xr.rdf
More file actions
43 lines (34 loc) · 1.23 KB
/
k3xr.rdf
File metadata and controls
43 lines (34 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!--
Oscar Fernandez - s100048
[Class01, includes, Sensor029]
[Class01, includes, Computer101]
[Sensor029, hasMeasurement, Measurement8401]
[Measurement8401, hasTemperature, 29]
[Measurement8401, atTime, 2010-06-12T12:00:12]
[Computer101, hasOwner, User10A]
[User10A, hasName, Pedro]
-->
<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF
xml:base="http://www.example.org/#"
xmlns="http://www.example.org/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:property="http://www.example.org/properties/">
<rdf:Description rdf:about="#User10A">
<property:hasName>Pedro</property:hasName>
</rdf:Description>
<rdf:Description rdf:about="#Computer101">
<property:hasOwner rdf:resource="#User10A"/>
</rdf:Description>
<rdf:Description rdf:about="#Measurement8401">
<property:hasTemperature>29</property:hasTemperature>
<atTime rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2010-06-12T12:00:12</atTime>
</rdf:Description>
<rdf:Description rdf:about="#Sensor029">
<property:hasMeasurement rdf:resource="#Measurement8401"/>
</rdf:Description>
<rdf:Description rdf:about="#Class01">
<property:includes rdf:resource="#Sensor029"/>
<property:includes rdf:resource="#Computer101"/>
</rdf:Description>
</rdf:RDF>