/** * 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. */ /** * Information about a single JSON schema. * @export * @interface JsonSchemaInfo */ export interface JsonSchemaInfo { /** * The Synapse identifier issued to the Organization to which this JsonSchema belongs. * @type {string} * @memberof JsonSchemaInfo */ organizationId?: string; /** * The name of the Organization to which this JsonSchema belongs. * @type {string} * @memberof JsonSchemaInfo */ organizationName?: string; /** * The Synapse identifier issued to the JsonSchema. * @type {string} * @memberof JsonSchemaInfo */ schemaId?: string; /** * The name of the JsonSchema. * @type {string} * @memberof JsonSchemaInfo */ schemaName?: string; /** * The date this JsonSchema was created. * @type {string} * @memberof JsonSchemaInfo */ createdOn?: string; /** * The ID of the user that created this JsonSchema. * @type {string} * @memberof JsonSchemaInfo */ createdBy?: string; } /** * Check if a given object implements the JsonSchemaInfo interface. */ export declare function instanceOfJsonSchemaInfo(value: object): value is JsonSchemaInfo; export declare function JsonSchemaInfoFromJSON(json: any): JsonSchemaInfo; export declare function JsonSchemaInfoFromJSONTyped(json: any, ignoreDiscriminator: boolean): JsonSchemaInfo; export declare function JsonSchemaInfoToJSON(json: any): JsonSchemaInfo; export declare function JsonSchemaInfoToJSONTyped(value?: JsonSchemaInfo | null, ignoreDiscriminator?: boolean): any;