Variable $AmbienteFindOneResultViewConst

$AmbienteFindOneResultView: {
    properties: {
        bloco: {
            allOf: readonly [{
                $ref: "#/components/schemas/BlocoFindOneResultView";
            }];
            description: "Visão FindOne de um bloco.";
            kind: "type";
            nullable: false;
        };
        capacidade: {
            description: "Capacidade do ambiente/sala.";
            nullable: true;
            type: "integer";
        };
        codigo: {
            description: "Código do ambiente/sala.";
            minLength: 1;
            nullable: false;
            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";
        };
        descricao: {
            description: "Descrição do ambiente/sala.";
            nullable: true;
            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";
        };
        imagemCapa: {
            allOf: readonly [{
                $ref: "#/components/schemas/ImagemFindOneResultView";
            }];
            description: "Visão FindOne de uma imagem.";
            kind: "type";
            nullable: true;
        };
        nome: {
            description: "Nome do ambiente/sala.";
            minLength: 1;
            nullable: false;
            type: "string";
        };
        tipo: {
            description: "Tipo do ambiente/sala. Ex.: sala aula, auditório, laboratório de química.";
            nullable: true;
            type: "string";
        };
    };
    required: readonly ["id", "nome", "descricao", "codigo", "capacidade", "tipo", "bloco", "imagemCapa", "dateCreated", "dateUpdated", "dateDeleted"];
    type: "object";
} = ...