20 lines
647 B
JSON
20 lines
647 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "schema:SomeProducts",
|
|
"title": "SomeProducts",
|
|
"description": "A placeholder for multiple similar products of the same kind.",
|
|
"type": "object",
|
|
"allOf": [
|
|
{
|
|
"description": "Any offered product or service. For example: a pair of shoes; a concert ticket; the rental of a car; a haircut; or an episode of a TV show streamed online.",
|
|
"$ref": "schema:Product"
|
|
}
|
|
],
|
|
"properties": {
|
|
"inventoryLevel": {
|
|
"description": "The current approximate inventory level for the item or items.",
|
|
"$ref": "schema:QuantitativeValue"
|
|
}
|
|
}
|
|
}
|