Apache HBase · Schema

TableSchema

HBase table schema with column family definitions

ApacheBig DataBigtableDatabaseHadoopNoSQLOpen SourceWide Column

Properties

Name Type Description
name string
ColumnSchema array
View JSON Schema on GitHub

JSON Schema

hbase-rest-tableschema-schema.json Raw ↑
{
  "$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"
      }
    }
  }
}