Apache HBase · Schema

CellSet

Set of HBase cells grouped by row

ApacheBig DataBigtableDatabaseHadoopNoSQLOpen SourceWide Column

Properties

Name Type Description
Row array
View JSON Schema on GitHub

JSON Schema

hbase-rest-cellset-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api-evangelist.github.io/apache-hbase/json-schema/hbase-rest-cellset-schema.json",
  "title": "CellSet",
  "type": "object",
  "description": "Set of HBase cells grouped by row",
  "properties": {
    "Row": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "key": {
            "type": "string",
            "example": "cm93a2V5MQ=="
          },
          "Cell": {
            "type": "array",
            "items": {
              "$ref": "#/definitions/Cell"
            }
          }
        }
      }
    }
  }
}