{ "$id": "https://raw.githubusercontent.com/tillias/api-first-insurance/main/claim-accepted-schema.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "ClaimAccepted", "type": "object", "properties": { "claimId": { "type": "string", "description": "Id of a claim" }, "email": { "type": "string", "format": "email", "description": "Official in charge" } }, "examples": [ { "claimId": "CLAIM-123", "email": "john-doe@foo.com" } ] }