Variable $HorarioGeradoFindOneResultViewConst

$HorarioGeradoFindOneResultView: {
    properties: {
        calendario: {
            allOf: readonly [{
                $ref: "#/components/schemas/CalendarioLetivoFindOneResultView";
            }];
            description: "Visão FindOne de um calendário letivo.";
            kind: "type";
            nullable: false;
        };
        dataGeracao: {
            $schema: "https://json-schema.org/draft/2020-12/schema";
            description: "Data em que o horário foi gerado.";
            format: "date-time";
            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";
        };
        status: {
            description: "Status do horário gerado.";
            nullable: true;
            type: "string";
        };
        tipo: {
            description: "Tipo do horário gerado.";
            nullable: true;
            type: "string";
        };
        vigenciaFim: {
            $schema: "https://json-schema.org/draft/2020-12/schema";
            description: "Fim da vigência do horário gerado.";
            format: "date";
            nullable: true;
            type: "string";
        };
        vigenciaInicio: {
            $schema: "https://json-schema.org/draft/2020-12/schema";
            description: "Início da vigência do horário gerado.";
            format: "date";
            nullable: true;
            type: "string";
        };
    };
    required: readonly ["id", "status", "tipo", "dataGeracao", "vigenciaInicio", "vigenciaFim", "calendario", "dateCreated", "dateUpdated", "dateDeleted"];
    type: "object";
} = ...