-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathAsset.ttl
90 lines (72 loc) · 2.37 KB
/
Asset.ttl
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sf: <https://github.com/vocol/salesforce/> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
sf:contactId a owl:ObjectProperty ;
rdfs:label "Contact ID"@en ;
rdfs:domain sf:Asset ;
rdfs:range sf:Contact .
sf:createdDate a owl:DatatypeProperty ;
rdfs:label "Created Date"@en ;
rdfs:domain sf:Asset ;
rdfs:range xsd:dateTime .
sf:description a owl:DatatypeProperty ;
rdfs:label "Description"@en ;
rdfs:domain sf:Asset ;
rdfs:range xsd:string .
sf:id a owl:DatatypeProperty ;
rdfs:label "Asset ID"@en ;
rdfs:domain sf:Asset ;
rdfs:range rdfs:Literal .
sf:installDate a owl:DatatypeProperty ;
rdfs:label "Install Date"@en ;
rdfs:domain sf:Asset ;
rdfs:range xsd:date .
sf:isCompetitorProduct a owl:DatatypeProperty ;
rdfs:label "Competitor Asset"@en ;
rdfs:domain sf:Asset ;
rdfs:range xsd:boolean .
sf:isDeleted a owl:DatatypeProperty ;
rdfs:label "Deleted"@en ;
rdfs:domain sf:Asset ;
rdfs:range xsd:boolean .
sf:lastModifiedDate a owl:DatatypeProperty ;
rdfs:label "Last Modified Date"@en ;
rdfs:domain sf:Asset ;
rdfs:range xsd:dateTime .
sf:name a owl:DatatypeProperty ;
rdfs:label "Asset Name"@en ;
rdfs:domain sf:Asset ;
rdfs:range xsd:string .
sf:price a owl:DatatypeProperty ;
rdfs:label "Price"@en ;
rdfs:domain sf:Asset ;
rdfs:range xsd:double .
sf:productId a owl:ObjectProperty ;
rdfs:label "Product ID"@en ;
rdfs:domain sf:Asset ;
rdfs:range sf:Product .
sf:purchaseDate a owl:DatatypeProperty ;
rdfs:label "Purchase Date"@en ;
rdfs:domain sf:Asset ;
rdfs:range xsd:date .
sf:quantity a owl:DatatypeProperty ;
rdfs:label "Quantity"@en ;
rdfs:domain sf:Asset ;
rdfs:range xsd:double .
sf:serialNumber a owl:DatatypeProperty ;
rdfs:label "Serial Number"@en ;
rdfs:domain sf:Asset ;
rdfs:range xsd:string .
sf:status a owl:DatatypeProperty ;
rdfs:label "Status"@en ;
rdfs:domain sf:Asset ;
rdfs:range xsd:string .
sf:usageEndDate a owl:DatatypeProperty ;
rdfs:label "Usage End Date"@en ;
rdfs:domain sf:Asset ;
rdfs:range xsd:date .
sf:Asset a owl:Class ;
rdfs:label "Asset" .