Variable $EstadoFindOneResultViewConst

$EstadoFindOneResultView: {
    properties: {
        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 do estado.";
            nullable: false;
            type: "string";
        };
        sigla: {
            description: "Sigla do estado.";
            nullable: false;
            type: "string";
            x-unispec-constraint-estado-sigla: true;
        };
    };
    required: readonly ["id", "nome", "sigla"];
    type: "object";
} = ...