File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed
Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 1717 "description": "Free text commentary about the abuse event inserted by an analyst.",
1818 "type": "String"
1919 },
20+ "constituency": {
21+ "description": "Internal identifier for multi-constituency setup",
22+ "type": "String"
23+ },
2024 "destination.abuse_contact": {
2125 "description": "Abuse contact for destination address. A comma separated list.",
2226 "type": "LowercaseString"
388392 "tlp": {
389393 "description": "Traffic Light Protocol level of the event.",
390394 "type": "TLP"
391- },
392- "constituency": {
393- "description": "Internal identifier for multi-constituency setup",
394- "type": "String"
395395 }
396396 },
397397 "report": {
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ CREATE TABLE events (
44 " classification.taxonomy" varchar (100 ),
55 " classification.type" text ,
66 " comment" text ,
7+ " constituency" text ,
78 " destination.abuse_contact" text ,
89 " destination.account" text ,
910 " destination.allocated" timestamp with time zone ,
@@ -99,4 +100,4 @@ CREATE INDEX "idx_events_source.asn" ON events USING btree ("source.asn");
99100CREATE INDEX " idx_events_source.ip" ON events USING btree (" source.ip" );
100101CREATE INDEX " idx_events_source.fqdn" ON events USING btree (" source.fqdn" );
101102CREATE INDEX " idx_events_time.observation" ON events USING btree (" time.observation" );
102- CREATE INDEX " idx_events_time.source" ON events USING btree (" time.source" );
103+ CREATE INDEX " idx_events_time.source" ON events USING btree (" time.source" );
You can’t perform that action at this time.
0 commit comments