Skip to content

brando:productItem

Property: Product Item

Brando property reference
Defined in the Brando vocabulary.


Brand > Property > Multiple types :: productItem (brando:BrandedCategory, brando:Brand)

Canonical URL: https://brandoschema.com/properties/productItem Check for open issues.


Definition

Links the node to one or more specific sellable product items.


Values expected to be one of these types

  • brando:ProductItem
  • List of brando:ProductItem values

Used on these types

  • brando:BrandedCategory
  • brando:Brand

Example (JSON-LD)

{
  "@context": {
    "schema": "https://schema.org/",
    "brando": "https://brandoschema.com/"
  },
  "@id": "https://example.com/brand/northstar/category/current-accounts",
  "@type": "brando:BrandedCategory",
  "schema:name": "Current Accounts",
  "brando:productItem": [
    {
      "@id": "https://example.com/product-item/northstar/current-account/standard",
      "@type": "brando:ProductItem",
      "schema:name": "Northstar Standard Current Account",
      "schema:sku": "NS-CA-STD-001"
    },
    {
      "@id": "https://example.com/product-item/northstar/current-account/premium",
      "@type": "brando:ProductItem",
      "schema:name": "Northstar Premium Current Account",
      "schema:sku": "NS-CA-PRM-001"
    }
  ]
}
````

---

## Example (YAML)

```yaml
@context:
  schema: https://schema.org/
  brando: https://brandoschema.com/

@id: https://example.com/brand/northstar/category/current-accounts
@type: brando:BrandedCategory

schema:name: Current Accounts

brando:productItem:
  - @id: https://example.com/product-item/northstar/current-account/standard
    @type: brando:ProductItem
    schema:name: Northstar Standard Current Account
    schema:sku: NS-CA-STD-001
  - @id: https://example.com/product-item/northstar/current-account/premium
    @type: brando:ProductItem
    schema:name: Northstar Premium Current Account
    schema:sku: NS-CA-PRM-001

Acknowledgements

This element is based on the work of Advanced Analytica. Many Type and Property definitions are inspired by extensive analysis of brand guidelines, governance systems, commerce schemas, and AI content-safety practices.