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

Properties

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