-
Notifications
You must be signed in to change notification settings - Fork 4
/
Contract.ttl
130 lines (104 loc) · 3.76 KB
/
Contract.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
@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:billingCity a owl:DatatypeProperty ;
rdfs:label "Billing City"@en ;
rdfs:domain sf:Contract ;
rdfs:range xsd:string .
sf:billingCountry a owl:DatatypeProperty ;
rdfs:label "Billing Country"@en ;
rdfs:domain sf:Contract ;
rdfs:range xsd:string .
sf:billingPostalCode a owl:DatatypeProperty ;
rdfs:label "Billing Zip/Postal Code"@en ;
rdfs:domain sf:Contract ;
rdfs:range xsd:string .
sf:billingState a owl:DatatypeProperty ;
rdfs:label "Billing State/Province"@en ;
rdfs:domain sf:Contract ;
rdfs:range xsd:string .
sf:billingStreet a owl:DatatypeProperty ;
rdfs:label "Billing Street"@en ;
rdfs:domain sf:Contract ;
rdfs:range xsd:string .
sf:companySignedDate a owl:DatatypeProperty ;
rdfs:label "Company Signed Date"@en ;
rdfs:domain sf:Contract ;
rdfs:range xsd:date .
sf:contractNumber a owl:DatatypeProperty ;
rdfs:label "Contract Number"@en ;
rdfs:domain sf:Contract ;
rdfs:range xsd:string .
sf:contractTerm a owl:DatatypeProperty ;
rdfs:label "Contract Term"@en ;
rdfs:domain sf:Contract ;
rdfs:range xsd:integer .
sf:createdDate a owl:DatatypeProperty ;
rdfs:label "Created Date"@en ;
rdfs:domain sf:Contract ;
rdfs:range xsd:dateTime .
sf:customerSignedDate a owl:DatatypeProperty ;
rdfs:label "Customer Signed Date"@en ;
rdfs:domain sf:Contract ;
rdfs:range xsd:date .
sf:customerSignedId a owl:ObjectProperty ;
rdfs:label "Customer Signed By ID"@en ;
rdfs:domain sf:Contract ;
rdfs:range sf:Contact .
sf:customerSignedTitle a owl:DatatypeProperty ;
rdfs:label "Customer Signed Title"@en ;
rdfs:domain sf:Contract ;
rdfs:range xsd:string .
sf:description a owl:DatatypeProperty ;
rdfs:label "Description"@en ;
rdfs:domain sf:Contract ;
rdfs:range xsd:string .
sf:endDate a owl:DatatypeProperty ;
rdfs:label "Contract End Date"@en ;
rdfs:domain sf:Contract ;
rdfs:range xsd:date .
sf:id a owl:DatatypeProperty ;
rdfs:label "Contract ID"@en ;
rdfs:domain sf:Contract ;
rdfs:range rdfs:Literal .
sf:isDeleted a owl:DatatypeProperty ;
rdfs:label "Deleted"@en ;
rdfs:domain sf:Contract ;
rdfs:range xsd:boolean .
sf:lastApprovedDate a owl:DatatypeProperty ;
rdfs:label "Last Approved Date"@en ;
rdfs:domain sf:Contract ;
rdfs:range xsd:dateTime .
sf:lastModifiedDate a owl:DatatypeProperty ;
rdfs:label "Last Modified Date"@en ;
rdfs:domain sf:Contract ;
rdfs:range xsd:dateTime .
sf:ownerExpirationNotice a owl:DatatypeProperty ;
rdfs:label "Owner Expiration Notice"@en ;
rdfs:domain sf:Contract ;
rdfs:range xsd:string .
sf:pricebookId a owl:ObjectProperty ;
rdfs:label "Price Book ID"@en ;
rdfs:domain sf:Contract ;
rdfs:range sf:Pricebook .
sf:specialTerms a owl:DatatypeProperty ;
rdfs:label "Special Terms"@en ;
rdfs:domain sf:Contract ;
rdfs:range xsd:string .
sf:startDate a owl:DatatypeProperty ;
rdfs:label "Contract Start Date"@en ;
rdfs:domain sf:Contract ;
rdfs:range xsd:date .
sf:status a owl:DatatypeProperty ;
rdfs:label "Status"@en ;
rdfs:domain sf:Contract ;
rdfs:range xsd:string .
sf:statusCode a owl:DatatypeProperty ;
rdfs:label "Status Category"@en ;
rdfs:domain sf:Contract ;
rdfs:range xsd:string .
sf:Contract a owl:Class ;
rdfs:label "Contract" .