File tree 2 files changed +6
-5
lines changed
2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 17
17
"description": "Free text commentary about the abuse event inserted by an analyst.",
18
18
"type": "String"
19
19
},
20
+ "constituency": {
21
+ "description": "Internal identifier for multi-constituency setup",
22
+ "type": "String"
23
+ },
20
24
"destination.abuse_contact": {
21
25
"description": "Abuse contact for destination address. A comma separated list.",
22
26
"type": "LowercaseString"
362
366
"tlp": {
363
367
"description": "Traffic Light Protocol level of the event.",
364
368
"type": "TLP"
365
- },
366
- "constituency": {
367
- "description": "Internal identifier for multi-constituency setup",
368
- "type": "String"
369
369
}
370
370
},
371
371
"report": {
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ CREATE TABLE events (
4
4
" classification.taxonomy" varchar (100 ),
5
5
" classification.type" text ,
6
6
" comment" text ,
7
+ " constituency" text ,
7
8
" destination.abuse_contact" text ,
8
9
" destination.account" text ,
9
10
" destination.allocated" timestamp with time zone ,
@@ -93,4 +94,4 @@ CREATE INDEX "idx_events_source.asn" ON events USING btree ("source.asn");
93
94
CREATE INDEX " idx_events_source.ip" ON events USING btree (" source.ip" );
94
95
CREATE INDEX " idx_events_source.fqdn" ON events USING btree (" source.fqdn" );
95
96
CREATE INDEX " idx_events_time.observation" ON events USING btree (" time.observation" );
96
- CREATE INDEX " idx_events_time.source" ON events USING btree (" time.source" );
97
+ CREATE INDEX " idx_events_time.source" ON events USING btree (" time.source" );
You can’t perform that action at this time.
0 commit comments