Q1 FY27 - Update Organization schema
Update existing Organization schema.org markup to include: * Add `https://en.wikipedia.org/wiki/GitLab_Inc.` to the `sameAs` array alongside the existing GitLab software page reference to strengthen entity reconciliation across both Wikipedia entries * Align `@id` to standard convention (`https://about.gitlab.com/#organization`) * Add `numberOfEmployees` property to `Organization` schema * Add `industry` property to `Organization` schema * Upgrade `knowsAbout` entries from generic `Thing` to more specific schema types where applicable * Update `foundingDate` to full ISO 8601 format ### Proposed Markup ``` { "@context": "https://schema.org", "@graph": [ { "@id": "https://about.gitlab.com/#organization", "@type": ["Organization", "Corporation"], "name": "GitLab", "legalName": "GitLab Inc.", "url": "https://about.gitlab.com", "description": "GitLab is an AI-powered DevSecOps platform that enables organisations to deliver software faster and more securely. It provides an integrated suite of tools for source code management, CI/CD, security testing, and agile planning across the full software development lifecycle.", "slogan": "Our mission is to change all creative work from read-only to read-write so that everyone can contribute.", "foundingDate": "2011", "tickerSymbol": "GTLB", "numberOfEmployees": { "@type": "QuantitativeValue", "value": 2000 }, "address": { "@type": "PostalAddress", "streetAddress": "268 Bush Street #350", "addressLocality": "San Francisco", "addressRegion": "CA", "postalCode": "94104", "addressCountry": "US" }, "founders": [ { "@type": "Person", "name": "Sid Sijbrandij" }, { "@type": "Person", "name": "Dmitriy Zaporozhets" } ], "knowsAbout": [ { "@type": "DefinedTerm", "name": "DevOps", "inDefinedTermSet": "https://en.wikipedia.org/wiki/DevOps" }, { "@type": "DefinedTerm", "name": "DevSecOps", "inDefinedTermSet": "https://en.wikipedia.org/wiki/DevSecOps" }, { "@type": "DefinedTerm", "name": "GitOps", "inDefinedTermSet": "https://en.wikipedia.org/wiki/GitOps" }, { "@type": "DefinedTerm", "name": "CI/CD", "inDefinedTermSet": "https://en.wikipedia.org/wiki/CI/CD" }, { "@type": "DefinedTerm", "name": "Source Code Management", "inDefinedTermSet": "https://en.wikipedia.org/wiki/Version_control" }, { "@type": "DefinedTerm", "name": "Enterprise Agile Planning", "inDefinedTermSet": "https://en.wikipedia.org/wiki/Agile_software_development" }, { "@type": "DefinedTerm", "name": "Application Security Testing", "inDefinedTermSet": "https://en.wikipedia.org/wiki/Application_security" }, { "@type": "DefinedTerm", "name": "AI Code Assistant", "inDefinedTermSet": "https://en.wikipedia.org/wiki/AI-assisted_software_development" }, { "@type": "DefinedTerm", "name": "AI-Assisted Software Development", "inDefinedTermSet": "https://en.wikipedia.org/wiki/AI-assisted_software_development" } ], "industry": "DevSecOps Platform", "logo": { "@type": "ImageObject", "url": "https://res.cloudinary.com/about-gitlab-com/image/upload/v1750705064/crnigurqmalqj1uwhlg8.png" }, "sameAs": [ "https://en.wikipedia.org/wiki/GitLab", "https://en.wikipedia.org/wiki/GitLab_Inc.", "https://www.wikidata.org/wiki/Q55589254", "https://www.linkedin.com/company/gitlab-com", "https://twitter.com/gitlab", "https://www.facebook.com/gitlab", "https://www.instagram.com/gitlab/", "https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg" ] } ] } ```
issue