/** * mongocamp-server * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { JsonSchemaDefinition } from './JsonSchemaDefinition'; /** * * @export * @interface JsonSchema */ export interface JsonSchema { /** * * @type {string} * @memberof JsonSchema */ $schema: string; /** * * @type {string} * @memberof JsonSchema */ $ref: string; /** * * @type {{ [key: string]: JsonSchemaDefinition; }} * @memberof JsonSchema */ definitions: { [key: string]: JsonSchemaDefinition; }; } export declare function JsonSchemaFromJSON(json: any): JsonSchema; export declare function JsonSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): JsonSchema; export declare function JsonSchemaToJSON(value?: JsonSchema | null): any;