Amazon Neptune · Schema

OpenCypherNode

A property graph node as returned by openCypher queries.

DatabaseGraph DatabaseGremlinNeptuneProperty GraphRDFSPARQL

Properties

Name Type Description
~id string The unique identifier of the node.
~entityType string The entity type (always 'node').
~labels array The labels assigned to the node.
~properties object The node properties as key-value pairs.
View JSON Schema on GitHub

JSON Schema

amazon-neptune-opencyphernode-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/OpenCypherNode",
  "title": "OpenCypherNode",
  "type": "object",
  "description": "A property graph node as returned by openCypher queries.",
  "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."
    }
  }
}