Variable $CidadeFindOneResultViewConst

$CidadeFindOneResultView: {
    properties: {
        estado: {
            allOf: readonly [{
                $ref: "#/components/schemas/EstadoFindOneResultView";
            }];
            description: "Visão FindOne de um estado.";
            kind: "type";
            nullable: false;
        };
        id: {
            $id: "ladesa://schemas/v3/generics/numeric_id.json";
            $schema: "https://json-schema.org/draft/2020-12/schema";
            description: "Identificador do registro (numérico).";
            minimum: 1;
            nullable: false;
            type: "integer";
        };
        nome: {
            description: "Nome oficial da cidade.";
            nullable: false;
            type: "string";
        };
    };
    required: readonly ["id", "nome", "estado"];
    type: "object";
} = ...