{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/BackInStock", "title": "BackInStock", "type": "object", "properties": { "id": { "description": "Not allowed on create.", "type": "string", "nullable": true }, "type": { "type": "string", "enum": [ "back_in_stock" ] }, "properties": { "$ref": "#/components/schemas/BackInStockProperties" } }, "required": [ "type" ] }