Adding v0 import/export fields to dashboard metadata schema (#13425)

Co-authored-by: michelle_thomas <michelle.thomas@airbnb.com>
This commit is contained in:
michellethomas 2021-03-04 08:21:15 -08:00 committed by GitHub
parent 09e5ea1f3d
commit 95809e5e60
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -119,6 +119,9 @@ class DashboardJSONMetadataSchema(Schema):
stagger_time = fields.Integer()
color_scheme = fields.Str(allow_none=True)
label_colors = fields.Dict()
# used for v0 import/export
import_time = fields.Integer()
remote_id = fields.Integer()
class BaseDashboardSchema(Schema):