Variable $EventoFindOneResultViewConst
$EventoFindOneResultView: {
properties: {
calendario: {
allOf: readonly [{
$ref: "#/components/schemas/CalendarioLetivoFindOneResultView";
}];
description: "Visão FindOne de um calendário letivo.";
kind: "type";
nullable: false;
};
cor: {
description: "Cor da Evento.";
nullable: true;
type: "string";
};
dateCreated: {
$id: "ladesa://schemas/v3/generics/date_time.json";
$schema: "https://json-schema.org/draft/2020-12/schema";
description: "Data e hora da criação do registro.";
format: "date-time";
nullable: false;
type: "string";
};
dateDeleted: {
$schema: "https://json-schema.org/draft/2020-12/schema";
description: "Data e hora da exclusão do registro.";
format: "date-time";
nullable: true;
type: "string";
};
dateUpdated: {
$id: "ladesa://schemas/v3/generics/date_time.json";
$schema: "https://json-schema.org/draft/2020-12/schema";
description: "Data e hora da alteração do registro.";
format: "date-time";
nullable: false;
type: "string";
};
id: {
$id: "ladesa://schemas/v3/generics/uuid.json";
$schema: "https://json-schema.org/draft/2020-12/schema";
description: "Identificador do registro (uuid).";
format: "uuid";
nullable: false;
type: "string";
};
nome: {
description: "Nome do evento.";
nullable: true;
type: "string";
};
rrule: {
description: "Regra RRule para a recorrência do evento. Segue a RFC 5545 do iCalendar.";
nullable: false;
type: "string";
};
};
required: readonly ["id", "nome", "rrule", "cor", "calendario", "dateCreated", "dateUpdated", "dateDeleted"];
type: "object";
} = ...