Skip to content

Commit

Permalink
v4.29.0
Browse files Browse the repository at this point in the history
  • Loading branch information
garmeeh committed Jan 19, 2022
1 parent 06d4c8b commit 8589fa7
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 38 deletions.
69 changes: 32 additions & 37 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2728,7 +2728,6 @@ export default () => (

For reference and more info check [Google docs for Software App](https://developers.google.com/search/docs/data-types/software-app)


### Organization

```jsx
Expand All @@ -2739,7 +2738,7 @@ export default () => (
<>
<h1>Organization JSON-LD</h1>
<OrganizationJsonLd
organizationType= "Corporation"
organizationType="Corporation"
id="https://www.purpule-fox.io/#corporation"
logo="https://www.example.com/photos/logo.jpg"
legalName="Purple Fox LLC"
Expand Down Expand Up @@ -2773,21 +2772,22 @@ export default () => (
},
]}
sameAs={['https://www.orange-fox.com']}
url= 'https://www.purpule-fox.io/'
url="https://www.purpule-fox.io/"
/>
</>
);
```

**Data required properties**

| Property | Info |
| -------------------------- | -------------------------------------------------------------------------------------------------------- |
| `name` | The name of the Organization. |
| `url` | Url of the organization |
| `contactPoint` | |
| `contactPoint.telephone` | An internationalized version of the phone number, starting with the "+" symbol and country code |
| `contactPoint.contactType` | Description of the purpose of the phone number i.e. `Technical Support`. |
| Property | Info |
| -------------------------- | ----------------------------------------------------------------------------------------------- |
| `name` | The name of the Organization. |
| `url` | Url of the organization |
| `contactPoint` | |
| `contactPoint.telephone` | An internationalized version of the phone number, starting with the "+" symbol and country code |
| `contactPoint.contactType` | Description of the purpose of the phone number i.e. `Technical Support`. |

**Data Recommended properties**

| Property | Info |
Expand All @@ -2807,7 +2807,6 @@ export default () => (

For reference and more info check [Docs](https://schema.org/Organization)


### Brand

```jsx
Expand All @@ -2818,7 +2817,7 @@ export default () => (
<>
<h1>Brand JSON-LD</h1>
<BrandJsonLd
slogan= "What does the fox say?"
slogan="What does the fox say?"
id="https://www.purpule-fox.io/#corporation"
logo="https://www.example.com/photos/logo.jpg"
aggregateRating={{
Expand All @@ -2832,25 +2831,23 @@ export default () => (

**Data required properties**

| Property | Info |
| -------------------------- | -------------------------------------------------------------------------------------------------------- |
| `id` | 'URL to main entity of page' |
| Property | Info |
| -------- | ---------------------------- |
| `id` | 'URL to main entity of page' |

**Data Recommended properties**

| Property | Info |
| ------------------------------- | ---------------------------------------------------------------------------------------------------------- |
| `logo` | ImageObject or URL an associated logo to the Organization. |
| `slogan` | A slogan or motto associated with the item. |
| `aggregateRating.ratingValue` | The rating for the content.(Check the [reference](https://schema.org/ratingValue) |
| `aggregateRating.ratingCount` | The count of total number of ratings. |
| `aggregateRating.reviewCount` | The count of total number of reviews. |
| `aggregateRating.bestRating` | The highest value allowed in this rating system. If bestRating is omitted, 5 is assumed. |

| Property | Info |
| ----------------------------- | ---------------------------------------------------------------------------------------- |
| `logo` | ImageObject or URL an associated logo to the Organization. |
| `slogan` | A slogan or motto associated with the item. |
| `aggregateRating.ratingValue` | The rating for the content.(Check the [reference](https://schema.org/ratingValue) |
| `aggregateRating.ratingCount` | The count of total number of ratings. |
| `aggregateRating.reviewCount` | The count of total number of reviews. |
| `aggregateRating.bestRating` | The highest value allowed in this rating system. If bestRating is omitted, 5 is assumed. |

For reference and more info check [Docs](https://schema.org/Brand)


### WebPage

```jsx
Expand All @@ -2861,7 +2858,7 @@ export default () => (
<>
<h1>WebPage JSON-LD</h1>
<WebPageJsonLd
description= "What does the fox say?"
description="What does the fox say?"
id="https://www.purpule-fox.io/#corporation"
lastReviewed="2021-05-26T05:59:02.085Z"
reviewedBy={{
Expand All @@ -2875,23 +2872,21 @@ export default () => (

**Data required properties**

| Property | Info |
| -------------------------- | -------------------------------------------------------------------------------------------------------- |
| `id` | 'URL to main entity of page' |
| Property | Info |
| -------- | ---------------------------- |
| `id` | 'URL to main entity of page' |

**Data Recommended properties**

| Property | Info |
| ------------------------------- | ---------------------------------------------------------------------------------------------------------- |
| `description` | ImageObject or URL an associated logo to the Organization. |
| `lastReviewed` | Date on which the content on this web page was last reviewed for accuracy and/or completeness. |
| `reviewedBy.type` | People or organizations that will review the content of the web page. |
| `reviewedBy.name` | Name of the entity that have reviewed the content on this web page for accuracy and/or completeness. |

| Property | Info |
| ----------------- | ---------------------------------------------------------------------------------------------------- |
| `description` | ImageObject or URL an associated logo to the Organization. |
| `lastReviewed` | Date on which the content on this web page was last reviewed for accuracy and/or completeness. |
| `reviewedBy.type` | People or organizations that will review the content of the web page. |
| `reviewedBy.name` | Name of the entity that have reviewed the content on this web page for accuracy and/or completeness. |

For reference and more info check [Docs](https://schema.org/Brand)


## Contributors

Thanks goes to these wonderful people ([emoji key](https://github.com/kentcdodds/all-contributors#emoji-key)):
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "next-seo",
"version": "4.28.1",
"version": "4.29.0",
"description": "SEO plugin for Next.js projects",
"source": "src/index.tsx",
"main": "lib/next-seo.js",
Expand Down

0 comments on commit 8589fa7

Please sign in to comment.