Skip to content

Commit

Permalink
chore: update AUTHORS, THIRD-PARTY-NOTICES, Security Test Summary
Browse files Browse the repository at this point in the history
  • Loading branch information
mongodb-devtools-bot[bot] committed Feb 20, 2025
1 parent 1a6ae92 commit 72c99fb
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions docs/tracking-plan.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,7 @@ Generated on Thu, Feb 20, 2025
- [Signal Shown](#event--SignalShownEvent)

### Schema
- [Schema Analysis Cancelled](#event--SchemaAnalysisCancelledEvent)
- [Schema Analyzed](#event--SchemaAnalyzedEvent)
- [Schema Exported](#event--SchemaExportedEvent)

Expand Down Expand Up @@ -1869,6 +1870,22 @@ This event is fired when signal icon badge is rendered on the screen visible to

## Schema

<a name="event--SchemaAnalysisCancelledEvent"></a>

### Schema Analysis Cancelled

This event is fired when user analyzes the schema.

**Properties**:

- **with_filter** (required): `boolean`
- Indicates whether a filter was applied during the schema analysis.
- **analysis_time_ms** (required): `number`
- The time taken when analyzing the schema, before being cancelled, in milliseconds.
- **is_compass_web** (optional): `true | undefined`
- **connection_id** (optional): `string | undefined`
- The id of the connection associated to this event.

<a name="event--SchemaAnalyzedEvent"></a>

### Schema Analyzed
Expand All @@ -1881,6 +1898,14 @@ This event is fired when user analyzes the schema.
- Indicates whether a filter was applied during the schema analysis.
- **schema_width** (required): `number`
- The number of fields at the top level.
- **field_types** (required): `{ [x: string]: number; }`
- Key/value pairs of bsonType and count.
- **variable_type_count** (required): `number`
- The count of fields with multiple types in a given schema (not counting undefined).
This is only calculated for the top level fields, not nested fields and arrays.
- **optional_field_count** (required): `number`
- The count of fields that don't appear on all documents.
This is only calculated for the top level fields, not nested fields and arrays.
- **schema_depth** (required): `number`
- The number of nested levels.
- **geo_data** (required): `boolean`
Expand All @@ -1901,6 +1926,8 @@ This event is fired when user shares the schema.

- **has_schema** (required): `boolean`
- Indicates whether the schema was analyzed before sharing.
- **format** (required): `"standardJSON" | "mongoDBJSON" | "extendedJSON" | "legacyJSON"`
- **source** (required): `"app_menu" | "schema_tab"`
- **schema_width** (required): `number`
- The number of fields at the top level.
- **schema_depth** (required): `number`
Expand Down

0 comments on commit 72c99fb

Please sign in to comment.