Variable $EventoInputCreateViewConst
$EventoInputCreateView: {
properties: {
calendario: {
allOf: readonly [
{ $ref: "#/components/schemas/CalendarioLetivoFindOneInputView" },
];
description: "Dados de entrada para encontrar um calendário letivo por ID.";
kind: "type";
nullable: false;
};
cor: { nullable: true; type: "string" };
nome: { nullable: true; type: "string" };
rrule: { nullable: false; type: "string" };
};
required: readonly ["nome", "rrule", "cor", "calendario"];
type: "object";
} = ...
Type declaration
Readonly
properties: {
calendario: {
allOf: readonly [
{ $ref: "#/components/schemas/CalendarioLetivoFindOneInputView" },
];
description: "Dados de entrada para encontrar um calendário letivo por ID.";
kind: "type";
nullable: false;
};
cor: { nullable: true; type: "string" };
nome: { nullable: true; type: "string" };
rrule: { nullable: false; type: "string" };
}
Readonly
required: readonly ["nome", "rrule", "cor", "calendario"]
Readonly
type: "object"