> ## Documentation Index
> Fetch the complete documentation index at: https://private-7c7dfe99-mintlify-8c05c8a2.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

> Calcula la lista de rutas distintas y sus tipos almacenados en JSON

# distinctJSONPathsAndTypes

<div id="distinctJSONPathsAndTypes">
  ## distinctJSONPathsAndTypes
</div>

Introducido en: v24.9.0

Calcula la lista de rutas distintas y sus tipos almacenados en la columna [JSON](/es/reference/data-types/newjson).

<Note>
  Si la declaración JSON contiene rutas con tipos especificados, estas rutas siempre se incluirán en el resultado de las funciones `distinctJSONPaths/distinctJSONPathsAndTypes`, aunque los datos de entrada no tuvieran valores para esas rutas.
</Note>

**Sintaxis**

```sql theme={null}
distinctJSONPathsAndTypes(json)
```

**Argumentos**

* `json` — columna JSON. [`JSON`](/es/reference/data-types/newjson)

**Valor devuelto**

Devuelve el mapa ordenado de rutas y tipos. [`Map(String, Array(String))`](/es/reference/data-types/map)

**Ejemplos**

**Uso básico con tipos mixtos**

```sql title=Query theme={null}
DROP TABLE IF EXISTS test_json;
CREATE TABLE test_json(json JSON) ENGINE = Memory;
INSERT INTO test_json VALUES ('{"a" : 42, "b" : "Hello"}'), ('{"b" : [1, 2, 3], "c" : {"d" : {"e" : "2020-01-01"}}}'), ('{"a" : 43, "c" : {"d" : {"f" : [{"g" : 42}]}}}');

SELECT distinctJSONPathsAndTypes(json) FROM test_json;
```

```response title=Response theme={null}
┌─distinctJSONPathsAndTypes(json)───────────────────────────────────────────────────────────────────────────────────────────────────────────────┐
│ {'a':['Int64'],'b':['Array(Nullable(Int64))','String'],'c.d.e':['Date'],'c.d.f':['Array(JSON(max_dynamic_types=16, max_dynamic_paths=256))']} │
└───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┘
```

**Con rutas JSON definidas**

```sql title=Query theme={null}
DROP TABLE IF EXISTS test_json;
CREATE TABLE test_json(json JSON(a UInt32)) ENGINE = Memory;
INSERT INTO test_json VALUES ('{"b" : "Hello"}'), ('{"b" : "World", "c" : [1, 2, 3]}');

SELECT distinctJSONPathsAndTypes(json) FROM test_json;
```

```response title=Response theme={null}
┌─distinctJSONPathsAndTypes(json)────────────────────────────────┐
│ {'a':['UInt32'],'b':['String'],'c':['Array(Nullable(Int64))']} │
└────────────────────────────────────────────────────────────────┘
```
