in mozilla_schema_generator/probes.py [0:0]
def _set_description(self, definition):
self.description = None
if "description" in definition:
self.description = definition["description"]
# BigQuery limits descriptions to a maximum of 1024 characters,
# so we truncate anything longer than 1000.
if len(self.description) >= 1000:
self.description = self.description[:1000] + "…"