com.airplaneian.contrail.temp.trip
Schema Diff
+1 -1
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "com.airplaneian.contrail.temp.trip",
3
3
"defs": {
4
4
"main": {
5
5
"key": "tid",
6
6
"type": "record",
7
7
"record": {
8
8
"type": "object",
9
9
"required": [
10
10
"createdAt"
11
11
],
12
12
"properties": {
13
13
"name": {
14
14
"type": "string",
15
15
"maxLength": 640,
16
-
"description": "Free-text name for the trip. Public and permanent once published.",
16
+
"description": "Free-text name for the trip. Public as soon as the record is written, and copies may persist after the record is deleted.",
17
17
"maxGraphemes": 64
18
18
},
19
19
"source": {
20
20
"type": "string",
21
21
"maxLength": 64,
22
22
"description": "Short identifier for the tool that wrote this record."
23
23
},
24
24
"flights": {
25
25
"type": "array",
26
26
"items": {
27
27
"type": "string",
28
28
"format": "at-uri"
29
29
},
30
30
"maxLength": 200,
31
31
"description": "The flights in this trip, in the order flown, as AT-URIs to flight records. Plain AT-URIs rather than strong references, since flight records are corrected in place. References may dangle; readers must tolerate that."
32
32
},
33
33
"sourceId": {
34
34
"type": "string",
35
35
"maxLength": 512,
36
36
"description": "That tool's own identifier for this trip. A grouping key may be sensitive even when the grouping is not: never write a booking reference here."
37
37
},
38
38
"createdAt": {
39
39
"type": "string",
40
40
"format": "datetime",
41
41
"description": "When this record was written, not when the trip happened. Explicit UTC offset, no fractional seconds."
42
42
}
43
43
}
44
44
},
45
45
"description": "An assertion that a set of flights belonged to one journey. Only 'createdAt' is required, and absent means unknown or not applicable. The reference points one way only, from trip to flight, and a trip references only flight records the author wrote."
46
46
}
47
47
},
48
48
"$type": "com.atproto.lexicon.schema",
49
49
"lexicon": 1
50
50
}