Skip to content

Attribute Description

ENDPOINTS

GET /v1/knowledge-graph/attribute-descriptions/

Definition

An Attribute Description is an object describing one of the available Node attributes in the knowledge graph.

Attributes

Top level attributes

Name Type Description
name string Name of the node attribute.
description string Text used to describe the node attribute in more detail. (Coming soon; currently null)
static boolean Flag indicating whether the node attribute is static or not.
type string Type of the node attribute. Available: str, int, float or date.

JSON Example

The following JSON snippet is showing an Attribute Description object.

{
    "name": "member_of",
    "description": null,
    "static": false,
    "type": "str"
}