{
	"$schema": "https://json-schema.org/draft-07/schema#",
	"title": "listing_claimed",
	"description": "Ownership of a listing was transferred to the member whose claim was approved. Not yet dispatched by Pro's Outgoing_Webhooks (no listing_claimed entry in get_event_source_map()) - this describes the flat payload the declared Payload::listing() builder (wb_listora_automation_payload_listing(), the wb_listora_get_listing_cards() card shape) would produce, flattened at the top level with no nested envelope. context stays a nested sub-object, mirroring how delivered payloads keep a secondary detail (e.g. old_status, new_owner) alongside the flattened primary entity.",
	"type": "object",
	"required": ["id", "title", "link"],
	"properties": {
		"id": { "type": "integer" },
		"title": { "type": "string" },
		"link": { "type": "string", "format": "uri" },
		"featured_image": {
			"type": ["object", "null"],
			"properties": {
				"id": { "type": "integer" },
				"full": { "type": "string" },
				"medium": { "type": "string" },
				"medium_large": { "type": "string" },
				"thumbnail": { "type": "string" },
				"alt": { "type": "string" }
			}
		},
		"rating": {
			"type": "object",
			"properties": {
				"average": { "type": "number" },
				"count": { "type": "integer" }
			}
		},
		"listing_type": { "type": "string" },
		"listing_type_name": { "type": "string" },
		"is_featured": { "type": "boolean" },
		"location": { "type": "string" },
		"context": {
			"type": "object",
			"description": "context.context is one of rest_claim, admin_claim, admin_claim_bulk depending on which approval path transferred ownership.",
			"properties": {
				"context": { "type": "string" }
			}
		}
	}
}
