Vineyard · Schema

Vineyard Object

Schema for a Vineyard in-memory object including its ID, type, and location within the distributed cluster

Big DataCNCFCloud-NativeData EngineeringDistributed SystemsIn-Memory StorageKubernetesMachine-LearningMetadata ManagementPythonZero-Copy

Properties

Name Type Description
id string The 64-bit unsigned integer ObjectID as a hex string
typename string The fully qualified C++ type name of the stored object
nbytes integer Memory footprint of the object in bytes
isglobal boolean Whether the object is globally persistent and visible across all vineyard instances
islocal boolean Whether the object is local to the connected vineyard instance
instance_id integer The vineyard server instance ID where this object resides
hostname string Hostname of the vineyard server instance holding this object
signature string Object signature for content addressing and deduplication
members array For global objects: list of LocalObject IDs composing this distributed object
View JSON Schema on GitHub

JSON Schema

vineyard-object-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/vineyard/main/json-schema/vineyard-object-schema.json",
  "title": "Vineyard Object",
  "description": "Schema for a Vineyard in-memory object including its ID, type, and location within the distributed cluster",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "The 64-bit unsigned integer ObjectID as a hex string",
      "pattern": "^[0-9a-f]{16}$",
      "example": "0000000700063960"
    },
    "typename": {
      "type": "string",
      "description": "The fully qualified C++ type name of the stored object",
      "examples": [
        "vineyard::Scalar<std::string>",
        "vineyard::Tensor<float64>",
        "vineyard::DataFrame",
        "vineyard::RecordBatch",
        "vineyard::Graph"
      ]
    },
    "nbytes": {
      "type": "integer",
      "minimum": 0,
      "description": "Memory footprint of the object in bytes"
    },
    "isglobal": {
      "type": "boolean",
      "description": "Whether the object is globally persistent and visible across all vineyard instances"
    },
    "islocal": {
      "type": "boolean",
      "description": "Whether the object is local to the connected vineyard instance"
    },
    "instance_id": {
      "type": "integer",
      "description": "The vineyard server instance ID where this object resides"
    },
    "hostname": {
      "type": "string",
      "description": "Hostname of the vineyard server instance holding this object"
    },
    "signature": {
      "type": "string",
      "description": "Object signature for content addressing and deduplication"
    },
    "members": {
      "type": "array",
      "description": "For global objects: list of LocalObject IDs composing this distributed object",
      "items": {
        "type": "string"
      }
    }
  },
  "required": ["id", "typename", "nbytes"]
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/vineyard-object"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.