{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-schema/customers-pending-invitation-schema.json", "title": "PendingInvitation", "description": "An invitation to join a team at Flipdish.", "type": "object", "properties": { "AppName": { "description": "The name of the brand that you have been invited to join.", "type": "string", "example": "Example Name" }, "Email": { "description": "The email address that the invitation was sent to.", "type": "string", "example": "owner@example.com" }, "Otc": { "description": "The one-time code that can be used to accept the invitation.", "type": "string", "example": "string" }, "CreatedAt": { "format": "date-time", "description": "The time that the invitation was created.", "type": "string", "example": "2026-06-02T12:00:00Z" } } }