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.
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'],
},
});