/** * Synapse REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * To use a JSON schema for validation, the JSON schema plus all of its dependency schemas must be provided to a JSON schema validator. The 'validation' schema is simply a JSON schema with all of its dependencies added to the 'definitions' section of the schema, making the schema self-contained. * @export * @interface GetValidationSchemaRequest */ export interface GetValidationSchemaRequest { /** * * @type {string} * @memberof GetValidationSchemaRequest */ concreteType: GetValidationSchemaRequestConcreteTypeEnum; /** * The $id of the JSON schema to get the validation schema for. * @type {string} * @memberof GetValidationSchemaRequest */ $id?: string; } /** * @export */ export declare const GetValidationSchemaRequestConcreteTypeEnum: { readonly org_sagebionetworks_repo_model_schema_GetValidationSchemaRequest: "org.sagebionetworks.repo.model.schema.GetValidationSchemaRequest"; }; export type GetValidationSchemaRequestConcreteTypeEnum = typeof GetValidationSchemaRequestConcreteTypeEnum[keyof typeof GetValidationSchemaRequestConcreteTypeEnum]; /** * Check if a given object implements the GetValidationSchemaRequest interface. */ export declare function instanceOfGetValidationSchemaRequest(value: object): value is GetValidationSchemaRequest; export declare function GetValidationSchemaRequestFromJSON(json: any): GetValidationSchemaRequest; export declare function GetValidationSchemaRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetValidationSchemaRequest; export declare function GetValidationSchemaRequestToJSON(json: any): GetValidationSchemaRequest; export declare function GetValidationSchemaRequestToJSONTyped(value?: GetValidationSchemaRequest | null, ignoreDiscriminator?: boolean): any;