Metadata
BrandMeta
BrandMeta()
Brand Metadata
Brand metadata is stored in meta
, providing place to describe the company or project, the brand guidelines, additional links, and more.
Attributes
- name
-
BrandMetaName | None
The name of the brand. In the YAML, this may be a dictionary with the
full
andshort
forms of the brand name.meta: name: full: Very Big Corporation of America short: VBCA
or a single value as shorthand for
meta.name.full
.meta: name: Very Big Corporation of America
- link
-
BrandMetaLink | None
Links to additional resources related to the brand, such as its homepage, social media accounts, etc. Like
name
, this can be a single value or a dictionary with additional keys. If a single value is provided, it is promoted to thehome
key ofbrand_yml.meta.BrandMetaLink
.These two constructions are equivalent:
meta: link: https://www.very-big-corp.com/
meta: link: home: https://www.very-big-corp.com/
Notes
Additional fields are allowed, so you may store any additional metadata you want to attach to the brand here. Tools that use brand_yml
may not know about these fields, however.
Examples
_brand.yml
meta:
name: Very Big Corp. of America
link: https://very-big-corp.com
_brand.yml
meta:
name:
full: Very Big Corporation of America
short: VBC
link:
home: https://very-big-corp.com
mastodon: https://mastodon.social/@VeryBigCorpOfficial
github: https://github.com/Very-Big-Corp
linkedin: https://linkedin.com/company/very-big-corp
twitter: https://twitter.com/VeryBigCorp
facebook: https://facebook.com/Very-Big-Corp
meta.BrandMetaName
meta.BrandMetaName()
Attributes
Name | Description |
---|---|
full | Full name of the company or brand. |
short | Short name of the company or brand, for use in space-constrained settings. |
meta.BrandMetaLink
meta.BrandMetaLink()
Brand Metadata Links
Links to the brand or company online and on social media sites. Links must be the full URL to the social media profile. Additional fields are allowed, but only the attributes listed below are validated.
Attributes
Name | Description |
---|---|
bluesky | Bluesky link for the brand or company. |
Facebook link for the brand or company. | |
github | GitHub link for the brand or company. |
home | Home website link for the brand or company. |
LinkedIn link for the brand or company. | |
mastodon | Mastodon link for the brand or company. |
Twitter link for the brand or company. |