Apache HBase · Schema

Cell

Single HBase cell with column and value

ApacheBig DataBigtableDatabaseHadoopNoSQLOpen SourceWide Column

Properties

Name Type Description
column string
timestamp integer
$ string
View JSON Schema on GitHub

JSON Schema

hbase-rest-cell-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api-evangelist.github.io/apache-hbase/json-schema/hbase-rest-cell-schema.json",
  "title": "Cell",
  "type": "object",
  "description": "Single HBase cell with column and value",
  "properties": {
    "column": {
      "type": "string",
      "example": "Y2YxOnF1YWw="
    },
    "timestamp": {
      "type": "integer",
      "format": "int64",
      "example": 1718153645993
    },
    "$": {
      "type": "string",
      "example": "dmFsdWU="
    }
  }
}