HBase table schema with column family definitions
{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://api-evangelist.github.io/apache-hbase/json-schema/hbase-rest-tableschema-schema.json", "title": "TableSchema", "type": "object", "description": "HBase table schema with column family definitions", "properties": { "name": { "type": "string", "example": "my-table" }, "ColumnSchema": { "type": "array", "items": { "$ref": "#/definitions/ColumnFamily" } } } }