This repository was archived by the owner on Jan 30, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathprofile_details.yaml
53 lines (53 loc) · 1.95 KB
/
profile_details.yaml
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
type: object
allOf:
- type: object
properties:
attributes:
type: object
description: Key-value attributes of the profile.
example: {'occupation': 'wizard', 'location': 'whimsyshire'}
forms:
type: object
description: Most recent URL and timestamp for each form submission.
example: {'signup': {'timestamp':'2017-06-22T13:17:38.696535', 'url':'http://www.example.com/'}}
analytics:
type: object
description: Key-balue attributes sent by analytics module.
example: {'signup': {'timestamp':'2017-06-22T13:17:38.696535', 'url':'http://www.example.com/'}}
goals:
type: object
description: Tracked goal conversions. Keys of this object are goal ids.
example: {5: {'conversion_count':2, 'last_conversion':'2018-01-18T09:01:49'}}
ecommerce:
type: object
description: Tracked ecommerce conversions. If no conversions are tracked, this object is empty.
properties:
last_conversion:
type: string
format: date-time
description: Last conversion datetime.
example: '2017-07-14T08:33:53.215948Z'
number_of_orders:
type: integer
description: Number of conversions.
example: 4
last_revenue:
type: number
format: float
description: Amount of last transaction.
example: 13.37
total_revenue:
type: number
format: float
description: Total amount of transactions tracked by audience manager.
example: 13.37
generic:
type: object
description: Generic key-value attributes of the profile.
example: {'total_revenue': 1}
updated_at:
type: string
format: date-time
description: Last update datetime.
example: '2017-07-14T08:33:53.215948Z'
- $ref: '#/definitions/ProfileList'