All Entities
Attributes common to all entities in the Knowledge Graph.
All Knowledge Graph entities will include the fields below, which are often generalized, linking, or metadata attributes common to all records.
See the left navigation panel for fields and attributes of specific entities.
For convenience, a complete ontology source in JSON format is also available here.
New to Diffbot Knowledge Graph? Start here.
All Fields
- allDescriptions
- allNames
- allOriginHashes
- allUriDetails
- allUris
- clusterWithOrigin
- crawlTimestamp
- description
- diffbotUri
- id
- image
- images
- importance
- name
- nbIncomingEdges
- nbOrigins
- nestedRecords
- nonCanonicalFacts
- originDetails
- origins
- profileChangeProbability
- summary
- type
- types
All Field Details
Note that certain longer field examples may be truncated for readability.
allDescriptions
All descriptions found for this entity. For the best description, refer to the field 'description'.
- Type: String
- Example:
{
"allDescriptions": ""
}
allNames
All names used, including nicknames, full names and transliterations to other languages.
- Type: String
- Example:
{
"allNames": ""
}
allOriginHashes
For Diffbot's internal use only.
- Type: String
- Example:
{
"allOriginHashes": ""
}
allUriDetails
Additional information about each URI in 'allUris', which lists the URIs associated with this entity.
- Type: UriDetails
- Example:
{
"allUriDetails": [
{
"domainMonthlyTraffic": 0,
"nbFollowing": 0,
"uriType": "",
"verified": false,
"nbLinkedAccounts": 0,
"nbFollowers": 0,
"httpCodeTimestamp": 0,
"httpCode": "",
"uri": ""
}
]
}
allUris
All URIs associated with an entity. A URI (uniform resource identifier) is a page on the web that describes an entity (e.g., an company's homepage or a person's social network profile).
- Type: URL
- Example:
{
"allUris": []
}
clusterWithOrigin
- Type: String
- Example:
{
"clusterWithOrigin": ""
}
crawlTimestamp
The default crawlTimestamp is the most recent date of all of the crawlTimestamps of the origins used to compute the Entity, returned as a UNIX time.
- Type: Integer
- Example:
{
"crawlTimestamp": 0
}
description
A few sentences describing an entity
- Type: String
- Example:
{
"description": ""
}
diffbotUri
diffbotUri is the URI an entity's (URI), which is defined by appending the Diffbot ID to the URL https://diffbot.com/entity/. For example, Diffbot's entityID is CWSwJ_SWQPfqO3HQsxY4lGg and its DiffbotUri is https://diffbot.com/entity/CWSwJ_SWQPfqO3HQsxY4lGg
- Type: URL
- Example:
{
"diffbotUri": ""
}
id
An alphanumeric string like CWSwJ_SWQPfqO3HQsxY4lGg that uniquely identifies an entity.
- Type: String
- Example:
{
"id": ""
}
image
The main image used to represent the entity.
- Type: String
- Example:
{
"image": ""
}
images
The visual representation of an entity usually in the form of a png, jpeg, gif, or svg file.
- Type: ImageField
- Example:
{
"images": [
{
"classifications": "",
"fingerprint": "",
"title": "",
"isCached": false,
"url": ""
}
]
}
importance
A number between 0 and 100 indicating how important or popular an entity is.
- Type: Float
- Example:
{
"importance": ""
}
name
Primary text label for this entity.
- Type: String
- Example:
{
"name": ""
}
nbIncomingEdges
This is the number of edges in the Knowledge Graph that point to this entity. For example, the nbIncomingEdges field for Google is over 100,000. This number includes the number of people that work at google, the number of investors who invested in google, etc.
- Type: Integer
- Example:
{
"nbIncomingEdges": 0
}
nbOrigins
Total number of origins in the field 'origins'.
- Type: Integer
- Example:
{
"nbOrigins": 0
}
nestedRecords
- Type: DiffbotEntity
- Example:
{
"nestedRecords": {}
}
nonCanonicalFacts
Enumerates all the non-canonical fields (i.e., those not defined in the ontology) that have a value for this entity. For instance, if 'numberOfChildren' is listed in 'nonCanonicalFacts' then the entity JSON will have the key 'numberOfChildren' with an associated value. This field is only provided when the parameter nonCanonicalFacts=1 is set. See: https://docs.diffbot.com/kgapi
- Type: String
- Example:
{
"nonCanonicalFacts": ""
}
originDetails
Additional information about origins listed in 'origins', including the latest time it was crawled.
- Type: OriginDetail
- Example:
{
"originDetails": [
{
"crawledAt": {
"str": "",
"precision": 0,
"timestamp": 0
},
"origin": "",
"isUsedAsIdBefore": false
}
]
}
origins
An origin is a web address where Diffbot found one or more facts about an entity.
- Type: String
- Example:
{
"origins": ""
}
profileChangeProbability
For Diffbot's internal use only.
- Type: Float
- Example:
{
"profileChangeProbability": ""
}
summary
A short phrase designed to disambiguate entities with the same or similar name
- Type: String
- Example:
{
"summary": ""
}
type
The main type of a Diffbot entity. Examples of type include Person, Organization, Article, Product.
- Type: Type
- Example:
{
"type": ""
}
types
All types of a Diffbot entity, including the value of the field 'type'.
- Type: String
- Example:
{
"types": ""
}
Updated 9 months ago