Schema Markup Generator (JSON-LD) for NewsArticle

 Sure, here's an example of JSON-LD schema markup for a news article:

Json
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "NewsArticle",
  "mainEntityOfPage": {
    "@type": "WebPage",
    "@id": "Article link"
  },
  "headline": "Article Headline",
  "description": "short description of article",
  "image": "Image url of Articlr",  
  "author": {
    "@type": "Person",
    "name": "Author name",
    "url": "Author url"
  },  
  "publisher": {
    "@type": "Organization",
    "name": "Publisher name",
    "logo": {
      "@type": "ImageObject",
      "url": "Publisher logo url"
    }
  },
  "datePublished": "2023-03-24",
  "dateModified": "2023-03-25"
}
</script>

You can replace the values in the schema with your own information to reflect the specific news article you're trying to markup. Be sure to include all required properties and any relevant optional properties.