blob: 73ff1cab0b3643155c00905ccd695a80349d34b1 [file] [log] [blame]
// Copyright 2019 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
library fuchsia.diagnostics;
/// Enum used to specify the output format for
/// Reader results.
enum Format {
/// Dump read results per the Diagnostics Json
/// Schema specifications.
JSON = 1;
/// Dump read results per the Iquery text specifications.
TEXT = 2;
};