Skip to content

Commit 2d88804

Browse files
committed
wip
1 parent 1942525 commit 2d88804

File tree

2 files changed

+39
-35
lines changed

2 files changed

+39
-35
lines changed

synapse/models/biz.py

+34-34
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,7 @@
117117
('buyer', ('entity:actor', {}), {
118118
'doc': 'The primary contact information for the buyer.',
119119
}),
120+
# FIXME remove orgname / orgfqdn
120121
('buyer:org', ('ou:org', {}), {
121122
'doc': 'The buyer org.',
122123
}),
@@ -219,26 +220,26 @@
219220
)),
220221
('biz:product', {}, (
221222
('name', ('str', {}), {
222-
'doc': 'The name of the product.',
223-
}),
223+
'doc': 'The name of the product.'}),
224+
224225
('type', ('biz:product:type:taxonomy', {}), {
225-
'doc': 'The type of product.',
226-
}),
226+
'doc': 'The type of product.'}),
227+
227228
# TODO ('upc', ('biz:upc', {}), {}),
228229
('summary', ('str', {}), {
229230
'doc': 'A brief summary of the product.',
230-
'disp': {'hint': 'text'},
231-
}),
231+
'disp': {'hint': 'text'}}),
232+
232233
# FIXME: manufactur?
233234
('maker', ('entity:actor', {}), {
234-
'doc': 'A contact for the maker of the product.',
235-
}),
235+
'doc': 'A contact for the maker of the product.'}),
236+
236237
('price:retail', ('econ:price', {}), {
237-
'doc': 'The MSRP price of the product.',
238-
}),
238+
'doc': 'The MSRP price of the product.'}),
239+
239240
('price:bottom', ('econ:price', {}), {
240-
'doc': 'The minimum offered or observed price of the product.',
241-
}),
241+
'doc': 'The minimum offered or observed price of the product.'}),
242+
242243
('price:currency', ('econ:currency', {}), {
243244
'doc': 'The currency of the retail and bottom price properties.',
244245
}),
@@ -251,40 +252,39 @@
251252
'doc': 'The ou:vitals snapshot this stake is part of.',
252253
}),
253254
('org', ('ou:org', {}), {
254-
'doc': 'The resolved org.',
255-
}),
255+
'doc': 'The resolved org.'}),
256+
256257
('org:name', ('entity:name', {}), {
257258
'prevnames': ('orgname',),
258-
'doc': 'The org name as reported by the source of the stake.',
259-
}),
259+
'doc': 'The org name as reported by the source of the stake.'}),
260+
260261
('org:fqdn', ('inet:fqdn', {}), {
261-
'doc': 'The org FQDN as reported by the source of the stake.',
262-
}),
262+
'doc': 'The org FQDN as reported by the source of the stake.'}),
263+
263264
('name', ('str', {}), {
264-
'doc': 'An arbitrary name for this stake. Can be non-contact like "pool".',
265-
}),
265+
'doc': 'An arbitrary name for this stake. Can be non-contact like "pool".'}),
266+
266267
# FIXME asof -> updated ( in general? )
267268
('asof', ('time', {}), {
268-
'doc': 'The time the stake is being measured.',
269-
}),
269+
'doc': 'The time the stake is being measured.'}),
270+
270271
('shares', ('int', {}), {
271-
'doc': 'The number of shares represented by the stake.',
272-
}),
272+
'doc': 'The number of shares represented by the stake.'}),
273+
273274
('invested', ('econ:price', {}), {
274-
'doc': 'The amount of money invested in the cap table iteration.',
275-
}),
275+
'doc': 'The amount of money invested in the cap table iteration.'}),
276+
276277
('value', ('econ:price', {}), {
277-
'doc': 'The monetary value of the stake.',
278-
}),
278+
'doc': 'The monetary value of the stake.'}),
279+
279280
('percent', ('hugenum', {}), {
280-
'doc': 'The percentage ownership represented by this stake.',
281-
}),
281+
'doc': 'The percentage ownership represented by this stake.'}),
282+
282283
('owner', ('entity:actor', {}), {
283-
'doc': 'Contact information of the owner of the stake.',
284-
}),
284+
'doc': 'Contact information of the owner of the stake.'}),
285+
285286
('purchase', ('econ:purchase', {}), {
286-
'doc': 'The purchase event for the stake.',
287-
}),
287+
'doc': 'The purchase event for the stake.'}),
288288
)),
289289
),
290290
}),

synapse/models/entity.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33

44
'interfaces': (
55

6+
# FIXME phys:made? ( product :manufacturer :made=<time> etc
7+
# FIXME meta:sourced?
8+
69
('entity:contactable', {
710
'interfaces': ('geo:locatable',),
811
'doc': 'An interface for forms which contain contact info.',
@@ -78,8 +81,9 @@
7881
'doc': 'An abstract entity which can be resolved to an organization or person.',
7982
'props': (
8083

84+
# FIXME name? :isreally :owner?
8185
('resolved', ('entity:resolved', {}), {
82-
'doc': 'The fully resolved entity to which this {contact} belongs.'}),
86+
'doc': 'The resolved entity to which this {contactable} belongs.'}),
8387
),
8488
}),
8589
),

0 commit comments

Comments
 (0)