Skip to content

Commit f04dd73

Browse files
committed
new: [gpx] An object to describe a GPX (GPS Exchange Format) file, including file metadata, GPX metadata, spatial bounds, and counts of waypoints, routes, and tracks.
1 parent 4c697b6 commit f04dd73

1 file changed

Lines changed: 166 additions & 0 deletions

File tree

objects/gpx/definition.json

Lines changed: 166 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,166 @@
1+
{
2+
"attributes": {
3+
"attachment": {
4+
"description": "The GPX file itself as an attachment.",
5+
"misp-attribute": "attachment",
6+
"ui-priority": 95
7+
},
8+
"author": {
9+
"description": "Author of the GPX file, if present in metadata.",
10+
"misp-attribute": "text",
11+
"ui-priority": 60
12+
},
13+
"creator": {
14+
"description": "Creator software or device as declared in the gpx root element.",
15+
"misp-attribute": "text",
16+
"ui-priority": 90
17+
},
18+
"description-text": {
19+
"description": "Description of the GPX dataset.",
20+
"disable_correlation": true,
21+
"misp-attribute": "text",
22+
"ui-priority": 70
23+
},
24+
"end-time": {
25+
"description": "Latest timestamp observed among route or track points.",
26+
"disable_correlation": true,
27+
"misp-attribute": "datetime",
28+
"ui-priority": 70
29+
},
30+
"filename": {
31+
"description": "Filename of the GPX file.",
32+
"misp-attribute": "filename",
33+
"ui-priority": 100
34+
},
35+
"gpx-version": {
36+
"description": "GPX format version declared in the gpx root element, for example 1.0 or 1.1.",
37+
"disable_correlation": true,
38+
"misp-attribute": "text",
39+
"ui-priority": 95
40+
},
41+
"keywords": {
42+
"description": "Keywords present in the GPX metadata.",
43+
"misp-attribute": "text",
44+
"multiple": true,
45+
"ui-priority": 40
46+
},
47+
"link": {
48+
"description": "Associated link present in GPX metadata.",
49+
"misp-attribute": "link",
50+
"multiple": true,
51+
"ui-priority": 30
52+
},
53+
"max-latitude": {
54+
"description": "Maximum latitude of the GPX bounding box in WGS84.",
55+
"disable_correlation": true,
56+
"misp-attribute": "float",
57+
"ui-priority": 60
58+
},
59+
"max-longitude": {
60+
"description": "Maximum longitude of the GPX bounding box in WGS84.",
61+
"disable_correlation": true,
62+
"misp-attribute": "float",
63+
"ui-priority": 60
64+
},
65+
"md5": {
66+
"description": "MD5 hash of the GPX file.",
67+
"misp-attribute": "md5",
68+
"ui-priority": 70
69+
},
70+
"mime-type": {
71+
"description": "MIME type of the file, typically application/gpx+xml.",
72+
"disable_correlation": true,
73+
"misp-attribute": "mime-type",
74+
"ui-priority": 90
75+
},
76+
"min-latitude": {
77+
"description": "Minimum latitude of the GPX bounding box in WGS84.",
78+
"disable_correlation": true,
79+
"misp-attribute": "float",
80+
"ui-priority": 60
81+
},
82+
"min-longitude": {
83+
"description": "Minimum longitude of the GPX bounding box in WGS84.",
84+
"disable_correlation": true,
85+
"misp-attribute": "float",
86+
"ui-priority": 60
87+
},
88+
"name": {
89+
"description": "Name of the GPX dataset or activity.",
90+
"misp-attribute": "text",
91+
"ui-priority": 85
92+
},
93+
"point-count": {
94+
"description": "Total number of geographic points contained in the GPX file.",
95+
"disable_correlation": true,
96+
"misp-attribute": "counter",
97+
"ui-priority": 70
98+
},
99+
"route-count": {
100+
"description": "Number of route elements in the GPX file.",
101+
"disable_correlation": true,
102+
"misp-attribute": "counter",
103+
"ui-priority": 75
104+
},
105+
"sha1": {
106+
"description": "SHA1 hash of the GPX file.",
107+
"misp-attribute": "sha1",
108+
"ui-priority": 70
109+
},
110+
"sha256": {
111+
"description": "SHA256 hash of the GPX file.",
112+
"misp-attribute": "sha256",
113+
"ui-priority": 85
114+
},
115+
"size-in-bytes": {
116+
"description": "Size of the GPX file in bytes.",
117+
"disable_correlation": true,
118+
"misp-attribute": "size-in-bytes",
119+
"ui-priority": 80
120+
},
121+
"start-time": {
122+
"description": "Earliest timestamp observed among route or track points.",
123+
"disable_correlation": true,
124+
"misp-attribute": "datetime",
125+
"ui-priority": 70
126+
},
127+
"text": {
128+
"description": "Free text comment or analyst note about the GPX file.",
129+
"disable_correlation": true,
130+
"misp-attribute": "text",
131+
"ui-priority": 20
132+
},
133+
"time": {
134+
"description": "Timestamp associated with the GPX metadata or activity.",
135+
"disable_correlation": true,
136+
"misp-attribute": "datetime",
137+
"ui-priority": 80
138+
},
139+
"track-count": {
140+
"description": "Number of track elements in the GPX file.",
141+
"disable_correlation": true,
142+
"misp-attribute": "counter",
143+
"ui-priority": 75
144+
},
145+
"track-segment-count": {
146+
"description": "Number of track segment elements in the GPX file.",
147+
"disable_correlation": true,
148+
"misp-attribute": "counter",
149+
"ui-priority": 65
150+
},
151+
"waypoint-count": {
152+
"description": "Number of waypoint elements in the GPX file.",
153+
"disable_correlation": true,
154+
"misp-attribute": "counter",
155+
"ui-priority": 75
156+
}
157+
},
158+
"description": "An object to describe a GPX (GPS Exchange Format) file, including file metadata, GPX metadata, spatial bounds, and counts of waypoints, routes, and tracks.",
159+
"meta-category": "file",
160+
"name": "gpx",
161+
"requiredOneOf": [
162+
"attachment"
163+
],
164+
"uuid": "64ee6f19-f154-45c0-bd9c-e659ff0e30f7",
165+
"version": 1
166+
}

0 commit comments

Comments
 (0)