UNPKG

@tsed/schema

Version:
22 lines (21 loc) 420 B
import { JsonEntityFn } from "./jsonEntityFn.js"; /** * See https://tools.ietf.org/html/draft-wright-json-schema-validation-01#section-6.28 * * ::: warning * OneOf isn't supported by OS2 * ::: * * @decorator * @validation * @swagger * @schema * @classDecorator * @input * @param oneOf */ export function OneOf(...oneOf) { return JsonEntityFn((entity) => { entity.schema.oneOf(oneOf); }); }