Google Knowledge Graph Search · Schema
Google Knowledge Graph Entity
An entity from the Google Knowledge Graph.
EntitiesGoogleKnowledge GraphLinked DataSchema.orgSemantic Search
Properties
| Name | Type | Description |
|---|---|---|
| @id | string | The canonical URI for the entity. |
| name | string | The name of the entity. |
| @type | array | The schema.org types of the entity. |
| description | string | A short description of the entity. |
| image | object | An image associated with the entity. |
| detailedDescription | object | A detailed description of the entity. |
| url | string | The official website URL for the entity. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "Entity.json",
"title": "Google Knowledge Graph Entity",
"description": "An entity from the Google Knowledge Graph.",
"type": "object",
"properties": {
"@id": {
"type": "string",
"description": "The canonical URI for the entity."
},
"name": {
"type": "string",
"description": "The name of the entity."
},
"@type": {
"type": "array",
"description": "The schema.org types of the entity.",
"items": {
"type": "string"
}
},
"description": {
"type": "string",
"description": "A short description of the entity."
},
"image": {
"type": "object",
"description": "An image associated with the entity.",
"properties": {
"contentUrl": {
"type": "string",
"format": "uri"
},
"url": {
"type": "string",
"format": "uri"
}
}
},
"detailedDescription": {
"type": "object",
"description": "A detailed description of the entity.",
"properties": {
"articleBody": {
"type": "string"
},
"url": {
"type": "string",
"format": "uri"
},
"license": {
"type": "string",
"format": "uri"
}
}
},
"url": {
"type": "string",
"format": "uri",
"description": "The official website URL for the entity."
}
}
}