title: Brand
'@id': schema:Brand
$extends: ../Thing.schema.yaml
role: tertiary
status: unstable
description: |
  A brand is a name used by an organization or business person for labeling a product, 
  product group, or similar. https://schema.org/Brand.
properties:
  logo:
    description: |
      A logo of of the brand. It can be either a URL of the image or image itself.
    anyOf:
      - type: string
        format: uri
      - $ref: ImageObject.schema.yaml
  reviews:
    '@id': schema:review
    description: |
      Short reviews of the brand and/or the products it represents.
    type: array
    items:
      type: string
