Art Institute of Chicago · Schema
Agent
A person or organization (artist, maker, donor, etc.).
Art And DesignMuseumOpen DataCultural HeritageIIIFPublic APIsOpen Source
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | |
| api_model | string | |
| api_link | string | |
| title | string | |
| sort_title | stringnull | |
| alt_titles | arraynull | |
| is_artist | boolean | |
| birth_date | integernull | |
| death_date | integernull | |
| description | stringnull | |
| ulan_id | stringnull | Getty ULAN identifier. |
| suggest_autocomplete_all | arrayobjectnull | |
| source_updated_at | string | |
| updated_at | string | |
| timestamp | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api.artic.edu/schemas/agent.schema.json",
"title": "Agent",
"type": "object",
"description": "A person or organization (artist, maker, donor, etc.).",
"properties": {
"id": {
"type": "integer"
},
"api_model": {
"type": "string"
},
"api_link": {
"type": "string",
"format": "uri"
},
"title": {
"type": "string"
},
"sort_title": {
"type": [
"string",
"null"
]
},
"alt_titles": {
"type": [
"array",
"null"
],
"items": {
"type": "string"
}
},
"is_artist": {
"type": "boolean"
},
"birth_date": {
"type": [
"integer",
"null"
]
},
"death_date": {
"type": [
"integer",
"null"
]
},
"description": {
"type": [
"string",
"null"
]
},
"ulan_id": {
"type": [
"string",
"null"
],
"description": "Getty ULAN identifier."
},
"suggest_autocomplete_all": {
"type": [
"array",
"object",
"null"
]
},
"source_updated_at": {
"type": "string",
"format": "date-time"
},
"updated_at": {
"type": "string",
"format": "date-time"
},
"timestamp": {
"type": "string",
"format": "date-time"
}
},
"required": [
"id",
"title",
"api_model",
"api_link"
]
}