Variable $DiaCalendarioInputCreateViewConst

$DiaCalendarioInputCreateView: {
    properties: {
        calendario: {
            allOf: readonly [{
                $ref: "#/components/schemas/CalendarioLetivoFindOneInputView";
            }];
            description: "Dados de entrada para encontrar um calendário letivo por ID.";
            kind: "type";
            nullable: true;
        };
        data: {
            $id: "ladesa://schemas/v3/generics/date.json";
            $schema: "https://json-schema.org/draft/2020-12/schema";
            description: "Date ISO 8601.";
            format: "date";
            nullable: false;
            type: "string";
        };
        diaLetivo: {
            nullable: false;
            type: "boolean";
        };
        feriado: {
            nullable: false;
            type: "boolean";
        };
    };
    required: readonly ["data", "feriado", "diaLetivo", "calendario"];
    type: "object";
} = ...