/** * The response object after validating the uploaded schema string. * * Contains the status of validation and an error message if the schema is not valid. * * API schema: CKDBValidateSchemaResponse * API version: 1.3.2 */ export interface CKDBValidateSchemaResponse { /** * The status of the schema string validation. * * `true` if the schema can be applied to the container environment. Otherwise `false`. */ isValid: boolean; /** * A message if the schema string is not valid. * * Error message for the provided schema string. */ errorMessage?: string; } /** * An object the provides the functions that * transform {@link CKDBValidateSchemaResponse } to and from JSON. */ export declare const jsonCodecCKDBValidateSchemaResponseOwnProperties: { /** * Get an encoder that transforms {@link CKDBValidateSchemaResponse }'s * own properties to JSON. */ readonly getEncoder: () => { readonly isValid: (value: boolean) => import("@apple/cktool.core").ValidatedNEA; readonly errorMessage: (value: string | import("fp-ts/lib/Option").Option | null | undefined) => import("@apple/cktool.core").ValidatedNEA>; }; /** * Get a decoder that transforms {@link CKDBValidateSchemaResponse }'s * own properties from JSON. */ readonly getDecoder: () => { readonly isValid: (value: boolean) => import("@apple/cktool.core").ValidatedNEA; readonly errorMessage: (value: string | import("fp-ts/lib/Option").Option | null | undefined) => import("@apple/cktool.core").ValidatedNEA>; }; };