google / schemarama

Schemarama is a project exploring standards-based validation for structured data, especially Schema.org.
Apache License 2.0
130 stars 23 forks source link

Remove fake @id from the pretty markup representation #10

Closed Gnomus042 closed 3 years ago

Gnomus042 commented 3 years ago

Fake @id field needs to be removed from the pretty markup representation

danbri commented 3 years ago

(thanks @jvandriel and @Aaranged for flagging this)

Gnomus042 commented 3 years ago

Should be fixed with the last change :)

{
  "@context": "https://schema.org",
  "@type": "Person",
  "name": "George Bush",
  "disambiguatingDescription": "41st President of the United States",
  "children": {
    "@type": "Person",
    "name": "George W. Bush",
    "disambiguatingDescription": "43rd President of the United States"
  }
}

image

danbri commented 3 years ago

Pushed to webschemas, see

Thanks all :)

jvandriel commented 3 years ago

Thanks @Gnomus042