feat: initial commit
This commit is contained in:
commit
a161b86c9a
705 changed files with 288162 additions and 0 deletions
29
vendor/sourcery.dny.nu/pana/vocab/schema/context.go
vendored
Normal file
29
vendor/sourcery.dny.nu/pana/vocab/schema/context.go
vendored
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
// Package schema contains terms for the Schema.org namespace.
|
||||
package schema
|
||||
|
||||
// Namespace is the IRI prefix used for terms defined in this namespace.
|
||||
const Namespace = "http://schema.org/"
|
||||
|
||||
const (
|
||||
About = Namespace + "about"
|
||||
Address = Namespace + "address"
|
||||
AddressCountry = Namespace + "addressCountry"
|
||||
AddressLocality = Namespace + "addressLocality"
|
||||
AddressRegion = Namespace + "addressRegion"
|
||||
Description = Namespace + "description"
|
||||
Email = Namespace + "email"
|
||||
FamilyName = Namespace + "familyName"
|
||||
GivenNaame = Namespace + "givenName"
|
||||
Image = Namespace + "image"
|
||||
Member = Namespace + "member"
|
||||
MemberOf = Namespace + "memberOf"
|
||||
Name = Namespace + "name"
|
||||
PostalCode = Namespace + "postalCode"
|
||||
StreetAddress = Namespace + "streetAddress"
|
||||
TypePropertyValue = Namespace + "PropertyValue"
|
||||
TypeOrganization = Namespace + "Organization"
|
||||
TypePerson = Namespace + "Person"
|
||||
TypePostalAddress = Namespace + "PostalAddress"
|
||||
URL = Namespace + "url"
|
||||
Value = Namespace + "value"
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue