-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathSolution.ttl
75 lines (60 loc) · 2.08 KB
/
Solution.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
@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:createdDate a owl:DatatypeProperty ;
rdfs:label "Created Date"@en ;
rdfs:domain sf:Solution ;
rdfs:range xsd:dateTime .
sf:id a owl:DatatypeProperty ;
rdfs:label "Solution ID"@en ;
rdfs:domain sf:Solution ;
rdfs:range rdfs:Literal .
sf:isDeleted a owl:DatatypeProperty ;
rdfs:label "Deleted"@en ;
rdfs:domain sf:Solution ;
rdfs:range xsd:boolean .
sf:isHtml a owl:DatatypeProperty ;
rdfs:label "Is Html"@en ;
rdfs:domain sf:Solution ;
rdfs:range xsd:boolean .
sf:isPublished a owl:DatatypeProperty ;
rdfs:label "Public"@en ;
rdfs:domain sf:Solution ;
rdfs:range xsd:boolean .
sf:isPublishedInPublicKb a owl:DatatypeProperty ;
rdfs:label "Visible in Public Knowledge Base"@en ;
rdfs:domain sf:Solution ;
rdfs:range xsd:boolean .
sf:isReviewed a owl:DatatypeProperty ;
rdfs:label "Reviewed"@en ;
rdfs:domain sf:Solution ;
rdfs:range xsd:boolean .
sf:lastModifiedDate a owl:DatatypeProperty ;
rdfs:label "Last Modified Date"@en ;
rdfs:domain sf:Solution ;
rdfs:range xsd:dateTime .
sf:solutionName a owl:DatatypeProperty ;
rdfs:label "Title"@en ;
rdfs:domain sf:Solution ;
rdfs:range xsd:string .
sf:solutionNote a owl:DatatypeProperty ;
rdfs:label "Description"@en ;
rdfs:domain sf:Solution ;
rdfs:range xsd:string .
sf:solutionNumber a owl:DatatypeProperty ;
rdfs:label "Solution Number"@en ;
rdfs:domain sf:Solution ;
rdfs:range xsd:string .
sf:status a owl:DatatypeProperty ;
rdfs:label "Status"@en ;
rdfs:domain sf:Solution ;
rdfs:range xsd:string .
sf:timesUsed a owl:DatatypeProperty ;
rdfs:label "Num Related Cases"@en ;
rdfs:domain sf:Solution ;
rdfs:range xsd:integer .
sf:Solution a owl:Class ;
rdfs:label "Solution" .