Amazon Neptune · JSON Structure

Opencypher Open Cypher Node Structure

A property graph node as returned by openCypher queries.

Type: object Properties: 4
DatabaseGraph DatabaseGremlinNeptuneProperty GraphRDFSPARQL

OpenCypherNode is a JSON Structure definition published by Amazon Neptune, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

~id ~entityType ~labels ~properties

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-neptune/refs/heads/main/json-structure/opencypher-open-cypher-node-structure.json",
  "name": "OpenCypherNode",
  "description": "A property graph node as returned by openCypher queries.",
  "type": "object",
  "properties": {
    "~id": {
      "type": "string",
      "description": "The unique identifier of the node."
    },
    "~entityType": {
      "type": "string",
      "enum": [
        "node"
      ],
      "description": "The entity type (always 'node')."
    },
    "~labels": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "The labels assigned to the node."
    },
    "~properties": {
      "type": "object",
      "additionalProperties": true,
      "description": "The node properties as key-value pairs."
    }
  }
}