Software App (SoftwareApplication) structured data in json

<script type="application/ld+json">
 {
  "@context": "https://schema.org/",
  "@type": "SoftwareApplication",
  "name": "Example App",
  "operatingSystem": "Windows 10",
  "applicationCategory": "Productivity",
  "description": "Example App is a powerful productivity software that helps you get more done in less time.",
  "url": "https://example.com/app",
  "image": "https://example.com/app-image.jpg",
  "author": {
    "@type": "Organization",
    "name": "Example Inc.",
    "url": "https://example.com"
  },
  "aggregateRating": {
    "@type": "AggregateRating",
    "ratingValue": "4.5",
    "reviewCount": "10"
  },
  "offers": {
    "@type": "Offer",
    "price": "19.99",
    "priceCurrency": "USD"
  },
  "review": [
    {
      "@type": "Review",
      "author": {
        "@type": "Person",
        "name": "John Doe"
      },
      "datePublished": "2022-01-01",
      "description": "Great app!",
      "reviewRating": {
        "@type": "Rating",
        "ratingValue": "4.5"
      }
    },
    {
      "@type": "Review",
      "author": {
        "@type": "Person",
        "name": "Jane Smith"
      },
      "datePublished": "2022-02-01",
      "description": "Love this app!",
      "reviewRating": {
        "@type": "Rating",
        "ratingValue": "5"
      }
    }
  ]
}

</script>
    

Note that this is just an example and the properties used may vary depending on the specific details of your software app.

Logo structured data in json for an organization

  <script type="application/ld+json">
    {
      "@context": "https://schema.org",
      "@type": "Organization",
      "name": "Example Inc.",
      "url": "https://www.example.com",
      "logo": "https://www.example.com/images/logo.png",
      "width": "600",
      "height": "60"
    }
    </script>

In this example, we have specified the following properties:

  • @context: Specifies the context of the structured data as "http://schema.org".
  • @type: Specifies that the structured data is for an organization.
  • name: Specifies the name of the organization as "Example Company".
  • logo: Specifies the logo of the organization as an ImageObject. The url property specifies the URL of the logo image, while the width and height properties specify the dimensions of the logo in pixels.

Note that the Logo structured data can be included on any page that represents the organization, such as the homepage or the About Us page.

Review snippet for a locksmith in json

<script type="application/ld+json">
{
  "@context": "http://schema.org",
  "@type": "Locksmith",
  "name": "ABC Locksmith",
  "telephone": "123-456-7890",
  "priceRange": "$$",
  "address": {
    "@type": "PostalAddress",
    "streetAddress": "123 Main St",
    "addressLocality": "Anytown",
    "addressRegion": "CA",
    "postalCode": "12345",
    "addressCountry": "US"
  },
  "aggregateRating": {
    "@type": "AggregateRating",
    "ratingValue": "4.5",
    "reviewCount": "10"
  },
  "image": "https://example.com/images/locksmith.jpg",
  "review": [{
      "@type": "Review",
      "author": {
        "@type": "Person",
        "name": "John Doe"
      },
      "datePublished": "2022-01-01",
      "description": "ABC Locksmith was able to unlock my car quickly and efficiently. The locksmith was friendly and professional. I highly recommend this locksmith.",
      "name": "Great service",
      "reviewRating": {
        "@type": "Rating",
        "ratingValue": 5
      }
    },
    {
      "@type": "Review",
      "author": {
        "@type": "Person",
        "name": "John Doe"
      },
      "datePublished": "2022-02-01",
      "description": "I called ABC Locksmith to change the locks on my house. The locksmith arrived on time and completed the job quickly. I am very satisfied with the service.",
      "name": "Excellent locksmith",
      "reviewRating": {
        "@type": "Rating",
        "ratingValue": 4
      }
    }
  ]
}
</script>

 

Video snippet in json

<script type="application/ld+json">
{
  "@context": "http://schema.org",
  "@type": "VideoObject",
  "name": "How to Bake a Cake",
  "description": "Learn how to bake a delicious cake in this step-by-step tutorial.",
  "thumbnailUrl": [
    "https://example.com/thumbnail1.jpg",
    "https://example.com/thumbnail2.jpg"
  ],
  "uploadDate": "2022-03-28T10:00:00-07:00",
  "duration": "PT5M30S",
  "contentUrl": "https://example.com/video.mp4",
  "embedUrl": "https://example.com/embed/video",
  "interactionStatistic": [
    {
      "@type": "InteractionCounter",
      "interactionType": {
        "@type": "http://schema.org/WatchAction"
      },
      "userInteractionCount": 1000
    },
    {
      "@type": "InteractionCounter",
      "interactionType": {
        "@type": "http://schema.org/LikeAction"
      },
      "userInteractionCount": 500
    },
    {
      "@type": "InteractionCounter",
      "interactionType": {
        "@type": "http://schema.org/DislikeAction"
      },
      "userInteractionCount": 50
    }
  ],
  "publisher": {
    "@type": "Organization",
    "name": "Example Publisher",
    "logo": {
      "@type": "ImageObject",
      "url": "https://example.com/logo.png"
    }
  },
  "author": {
    "@type": "Person",
    "name": "John Doe"
  }
}
</script>

This snippet includes properties such as the video's name, description, thumbnail URL, upload date, duration, content URL, embed URL, interaction statistics, publisher, and author. Note that some of these properties are optional and may not be necessary for your specific use case.

- All From ChatGPT
PLG_GSPEECH_SPEECH_BLOCK_TITLE