8000 [pull] main from schemaorg:main by pull[bot] · Pull Request #143 · rpatil524/schemaorg · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

[pull] main from schemaorg:main #143

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 5, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions data/schema.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -5117,6 +5117,12 @@ See also the <a href="/docs/hotels.html">dedicated document on the use of schema
:rangeIncludes :Date,
:DateTime .

:companyRegistration a rdf:Property ;
rdfs:label "companyRegistration" ;
rdfs:comment "The official registration number of a business including the organization that issued it such as Company House or Chamber of Commerce." ;
:domainIncludes :Organization ;
:rangeIncludes :Certification .

:composer a rdf:Property ;
rdfs:label "composer" ;
rdfs:comment "The person or organization who wrote a composition, or who is the composer of a work performed at some event." ;
Expand Down Expand Up @@ -6894,12 +6900,24 @@ In the context of [[ShippingService]], use the [[ServicePeriod]] format, that co
:rangeIncludes :DefinedTerm,
:Text .

:legalAddress a rdf:Property ;
rdfs:label "legalAddress" ;
rdfs:comment "The legal address of an organization which acts as the officially registered address used for legal and tax purposes. The legal address can be different from the place of operations of a business and other addresses can be part of an organization." ;
:domainIncludes :Organization ;
:rangeIncludes :PostalAddress .

:legalName a rdf:Property ;
rdfs:label "legalName" ;
rdfs:comment "The official name of the organization, e.g. the registered company name." ;
:domainIncludes :Organization ;
:rangeIncludes :Text .

:legalRepresentative a rdf:Property ;
rdfs:label "legalRepresentative" ;
rdfs:comment "One or multiple persons who represent this organization legally such as CEO or sole administrator." ;
:domainIncludes :Organization ;
:rangeIncludes :Person .

:leiCode a rdf:Property ;
rdfs:label "leiCode" ;
rdfs:comment "An organization identifier that uniquely identifies a legal entity as defined in ISO 17442." ;
Expand Down
0