get_schema
The functionget_schema(collection_name)returns the collection schema in python dictionary format.
Input-
collection_name – Specifies the Collection of which the schema will be returned.
Example-
schema = hyperspace_client.getSchema(collection_name)Object schema = hyperspaceClient.getSchema(collectionName);
JsonObject schemaJson = new Gson().toJsonTree(schema).getAsJsonObject();
System.out.println(schemaJson);let schema = hyperspaceClient.getSchema(collection_name);Last updated