Variable $EtapaInputCreateDtoConst

$EtapaInputCreateDto: {
    properties: {
        calendario: {
            allOf: readonly [{
                $ref: "#/components/schemas/CalendarioLetivoFindOneInputDto";
            }];
            description: "Calendario.";
            nullable: true;
        };
        cor: {
            description: "Cor da etapa.";
            nullable: true;
            type: "string";
        };
        dataInicio: {
            description: "Data de início.";
            format: "date";
            nullable: false;
            type: "string";
        };
        dataTermino: {
            description: "Data de término.";
            format: "date";
            nullable: false;
            type: "string";
        };
        numero: {
            description: "Número da etapa.";
            nullable: true;
            type: "integer";
        };
    };
    required: readonly ["numero", "dataInicio", "dataTermino", "cor", "calendario"];
    type: "object";
} = ...