changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "artist": {
+ "description": "Artist display name or 'Unknown'",
+ "type": "string"
+ },
+ "artist_nationality": {
+ "description": "Artist's nationality",
+ "type": "string"
+ },
+ "classification": {
+ "description": "Object classification",
+ "type": "string"
+ },
+ "credit_line": {
+ "description": "Credit and acquisition information",
+ "type": "string"
+ },
+ "date": {
+ "description": "Object date or period",
+ "type": "string"
+ },
+ "department": {
+ "description": "Museum department",
+ "type": "string"
+ },
+ "dimensions": {
+ "description": "Physical dimensions",
+ "type": "string"
+ },
+ "full_image_url": {
+ "description": "Full resolution image URL",
+ "type": "string"
+ },
+ "image_url": {
+ "description": "Small image URL",
+ "type": "string"
+ },
+ "is_public_domain": {
+ "description": "Whether artwork is in public domain",
+ "type": "boolean"
+ },
+ "medium": {
+ "description": "Materials and technique",
+ "type": "string"
+ },
+ "met_url": {
+ "description": "Met Museum URL for artwork",
+ "type": "string"
+ },
+ "object_id": {
+ "description": "Met Museum object ID",
+ "type": "number"
+ },
+ "title": {
+ "description": "Artwork title",
+ "type": "string"
+ }
+ },
+ "required": [
+ "object_id",
+ "title",
+ "artist",
+ "artist_nationality",
+ "date",
+ "medium",
+ "dimensions",
+ "department",
+ "classification",
+ "image_url",
+ "full_image_url",
+ "is_public_domain",
+ "credit_line",
+ "met_url"
+ ],
+ "type": "object"
+}