{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/InStore", "title": "InStore", "required": [ "IsCheckedIn", "StoreId" ], "type": "object", "properties": { "IsCheckedIn": { "type": "boolean" }, "StoreId": { "type": "string", "nullable": true } }, "example": { "IsCheckedIn": false, "StoreId": null } }