{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AdTargetingEntity", "title": "AdTargetingEntity", "type": "object", "properties": { "name": { "type": "string", "description": "Display name of the entity", "example": "United States" }, "urn": { "type": "string", "description": "URN identifier for the entity", "example": "urn:li:geo:103644278" }, "facetUrn": { "type": "string", "description": "URN of the parent facet", "example": "urn:li:adTargetingFacet:locations" } }, "required": [ "name", "urn", "facetUrn" ] }