blob: 479ee320a554fa8c511e86dde1321ef466067e44 [file] [log] [blame]
// Copyright 2017 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.
include "src/ledger/bin/storage/impl/object_identifier.fbs";
namespace storage;
// An entry for the identifier of a part of a file.
table ObjectChild {
size: ulong;
object_identifier: ObjectIdentifierStorage;
}
// The index of a chunked file.
table FileIndex {
size: ulong;
children: [ObjectChild];
}
root_type FileIndex;