Forum Moderators: Robert Charlton & goodroi

Message Too Old, No Replies

Organization schema

         

Arturo99

8:11 am on Jun 11, 2019 (gmt 0)

5+ Year Member Top Contributors Of The Month



Hi, I need help with schema.
I want to add organization to the schema below which was generated by a tool

Can i add
"Organization" : carpet design specialist
direcly into the code below?

thanks


<script type="application/ld+json">
{
"@context" : "http://schema.org",
"@type" : "LocalBusiness",
"name" : "Carpets",
"image" : "https://www.example.com/images/logo.jpg",
"url" : "https://www.example.com/" }
</script>

JesterMagic

11:42 am on Jun 11, 2019 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



"Organization" is a @type like "LocalBusiness". Is your business name really "Carpets"?

If you really want to put what you do then you can do something like this example (from [schema.org...]


<script type="application/ld+json">
{
"@context": "http://schema.org/",
"@type": "Service",
"serviceType": "Weekly home cleaning",
"provider": {
"@type": "LocalBusiness",
"name": "ACME Home Cleaning"
}
</script>

skaterpunk

11:51 am on Jun 11, 2019 (gmt 0)

5+ Year Member Top Contributors Of The Month



I'm still in the learning process of proper Schema, but from what I can tell you already have "@type" : "LocalBusiness", which would be "@type": "Organization", if you're listed as an organization.

Reference [schema.org...] and [schema.org...] for more help. Scroll to the bottom of the pages for writeup examples.

JesterMagic hit submit before I did!

Arturo99

12:11 pm on Jun 11, 2019 (gmt 0)

5+ Year Member Top Contributors Of The Month



So many different tags its confusing
Site is a carpet cuttings supplies
can you confirm its ok to have this code:

<script type="application/ld+json">
{
"@context": "http://schema.org/",
"@type": "Retail",
"serviceType": "carpet cutting supplies",
"provider": {
"@type": "LocalBusiness",
"name": "ACME Carpet cuttings"
}
</script>

thanks

JesterMagic

1:16 pm on Jun 11, 2019 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



The best way to figure things out is to use schema.org and look at your competitors and see what they do.

You can also use the Google Structured Data Testing Tool: [search.google.com...]

It will show you any errors or recommendations that Google has. Please note that this tool tests structured data based on what Google requires for its Search Engine. Somethings the tool reports as an error or recommendation may not be true by schema.org standards but by what Google requires if it is to use the information from the structured data. (in the SERPS, etc...)

Arturo99

1:50 pm on Jun 11, 2019 (gmt 0)

5+ Year Member Top Contributors Of The Month



ok thanks