interface IMediaType {
    example?: any;
    examples?: Record<
        string,
        | OpenApiV3_1.IExample
        | OpenApiV3_1.IJsonSchema.IReference<`#/components/examples/${string}`>,
    >;
    schema?: OpenApiV3_1.IJsonSchema;
}

Properties

example?: any
examples?: Record<
    string,
    | OpenApiV3_1.IExample
    | OpenApiV3_1.IJsonSchema.IReference<`#/components/examples/${string}`>,
>