// ------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License (MIT). See LICENSE in the repo root for license information. // ------------------------------------------------------------ namespace Microsoft.OpenApi { /// /// Represents the Open Api document format. /// public enum OpenApiFormat { /// /// JSON format. /// Json, /// /// Yaml format. /// Yaml } }