Files
komp_ac/server/src/table_structure/docs/response.txt
2025-07-25 18:18:00 +02:00

41 lines
739 B
Plaintext

grpcurl -plaintext \
-d '{
"profile_name": "default",
"table_name": "2025_customer"
}' \
localhost:50051 \
komp_ac.table_structure.TableStructureService/GetTableStructure
{
"columns": [
{
"name": "id",
"dataType": "INT8",
"isPrimaryKey": true
},
{
"name": "deleted",
"dataType": "BOOL"
},
{
"name": "full_name",
"dataType": "TEXT",
"isNullable": true
},
{
"name": "email",
"dataType": "VARCHAR(255)",
"isNullable": true
},
{
"name": "loyalty_status",
"dataType": "BOOL",
"isNullable": true
},
{
"name": "created_at",
"dataType": "TIMESTAMPTZ",
"isNullable": true
}
]
}