-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathPricebook.ttl
50 lines (40 loc) · 1.43 KB
/
Pricebook.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
@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:Pricebook ;
rdfs:range xsd:dateTime .
sf:description a owl:DatatypeProperty ;
rdfs:label "Description"@en ;
rdfs:domain sf:Pricebook ;
rdfs:range xsd:string .
sf:id a owl:DatatypeProperty ;
rdfs:label "Price Book ID"@en ;
rdfs:domain sf:Pricebook ;
rdfs:range rdfs:Literal .
sf:isActive a owl:DatatypeProperty ;
rdfs:label "Active"@en ;
rdfs:domain sf:Pricebook ;
rdfs:range xsd:boolean .
sf:isDeleted a owl:DatatypeProperty ;
rdfs:label "Deleted"@en ;
rdfs:domain sf:Pricebook ;
rdfs:range xsd:boolean .
sf:isStandard a owl:DatatypeProperty ;
rdfs:label "Is Standard Price Book"@en ;
rdfs:domain sf:Pricebook ;
rdfs:range xsd:boolean .
sf:lastModifiedDate a owl:DatatypeProperty ;
rdfs:label "Last Modified Date"@en ;
rdfs:domain sf:Pricebook ;
rdfs:range xsd:dateTime .
sf:name a owl:DatatypeProperty ;
rdfs:label "Price Book Name"@en ;
rdfs:domain sf:Pricebook ;
rdfs:range xsd:string .
sf:Pricebook a owl:Class ;
rdfs:label "Pricebook" .