-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathplanningCenter.proto
68 lines (60 loc) · 1.8 KB
/
planningCenter.proto
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
syntax = "proto3";
package rv.data;
import "url.proto";
import "rvtimestamp.proto";
import "presentation.proto";
message PlanningCenterPlan {
uint32 plan_id_num = 1;
uint32 parent_id_num = 2;
string series_title = 3;
string plan_title = 4;
string date_list = 5;
rv.data.Timestamp created_date = 6;
rv.data.Timestamp update_date = 7;
rv.data.Timestamp last_update_check_date = 8;
string plan_id_str = 9;
string parent_id_str = 10;
message PlanItem {
enum PlanItemType {
PLAN_ITEM_TYPE_ITEM = 0;
PLAN_ITEM_TYPE_SONG = 1;
PLAN_ITEM_TYPE_MEDIA = 2;
PLAN_ITEM_TYPE_HEADER = 3;
}
PlanItemType item_type = 1;
uint32 pco_id_num = 2;
uint32 service_id_num = 3;
uint32 parent_id_num = 4;
string name = 5;
repeated rv.data.PlanningCenterPlan.PlanItem.Attachment attachments = 6;
rv.data.Timestamp update_date = 7;
rv.data.PlanningCenterPlan.PlanItem.SongItem linked_song = 8;
string pco_id_str = 9;
string service_id_str = 10;
string parent_id_str = 11;
message Attachment {
string name = 1;
rv.data.URL url = 2;
rv.data.Timestamp created_date = 3;
rv.data.URL linked_path = 4;
uint32 pco_id_num = 5;
bool needs_update = 6;
rv.data.Timestamp update_date = 7;
string pco_id_str = 8;
}
message SongItem {
uint32 pco_id_num = 1;
uint32 arrangement_id_num = 2;
rv.data.Presentation.CCLI ccli = 3;
rv.data.PlanningCenterPlan.PlanItem.SongItem.Sequence sequence = 4;
string pco_id_str = 5;
string arrangement_id_str = 6;
message Sequence {
uint32 pco_id_num = 1;
string name = 2;
repeated string group_names = 3;
string pco_id_str = 4;
}
}
}
}