OSS-first docs

These docs teach the open system first: contracts, generated surfaces, runtimes, governance, and incremental adoption. Studio shows up as the operating layer on top, not as the source of truth.

marketplace.review.viewList

List of product reviews

  • Type: presentation (presentation)
  • Version: 1.0.0
  • Owners: @marketplace-team
  • Tags: marketplace, review, list
  • File: packages/examples/marketplace/src/review/review.presentation.ts
  • field.key.label
    marketplace.review.viewList
    field.version.label
    1.0.0
    field.type.label
    presentation (presentation)
    field.title.label
    marketplace.review.viewList
    field.description.label

    List of product reviews

  • Type: presentation (presentation)
  • Version: 1.0.0
  • Owners: @marketplace-team
  • Tags: marketplace, review, list
  • File: packages/examples/marketplace/src/review/review.presentation.ts
  • field.tags.label
    marketplace,review,list
    field.owners.label
    @marketplace-team
    field.stability.label

    List of product reviews

    Goal

    Show users reviews and ratings for a product.

    Context

    Displayed on the product detail page.

    Source Definition

    import {
    	definePresentation,
    	StabilityEnum,
    } from '@lssm-tech/lib.contracts-spec';
    import { ReviewModel } from './review.schema';
    
    export const ReviewListPresentation = definePresentation({
    	meta: {
    		key: 'marketplace.review.viewList',
    		version: '1.0.0',
    		title: 'Review List',
    		description: 'List of product reviews',
    		domain: 'marketplace',
    		owners: ['@marketplace-team'],
    		tags: ['marketplace', 'review', 'list'],
    		stability: StabilityEnum.Experimental,
    		goal: 'Show users reviews and ratings for a product.',
    		context: 'Displayed on the product detail page.',
    	},
    	source: {
    		type: 'component',
    		framework: 'react',
    		componentKey: 'ReviewList',
    		props: ReviewModel,
    	},
    	targets: ['react', 'markdown'],
    	policy: {
    		flags: ['marketplace.reviews.enabled'],
    	},
    });