Photography
Context: object.physical.artwork.photography
Photography is the art of capturing light with a camera to create an image, which can be either digital or analog (film).
Photography data structure supports digital cameras even though we could argue that it would be categorised as an virtual artwork, but in the case of artitistic photography, we could say that a digital photography is an exception to the rule.
| Key | Type | Description |
|---|---|---|
| format | string | The format of the photograph, either "digital" or "analog". |
| colorMode | string | The color mode of the photograph, either "color" or "black_and_white". |
| dpi | integer | DPI of an image if photography is digital |
| resolution | size | Resolution of an image if the photography is digital |
| camera | string | Camera used to take the photo |
"photography":{
"format": "digital",
"colorMode": "color",
"dpi": 300,
"resolution": {
"width": 3000,
"height": 2000,
"unit": "pixels"
},
"camera": "Canon EOS 5D Mark IV"
}