{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Invitation", "title": "Invitation", "type": "object", "description": "An invitation to join a Fastly customer account.", "properties": { "id": { "type": "string", "description": "The alphanumeric string identifying the invitation." }, "type": { "type": "string", "description": "The resource type.", "enum": [ "invitation" ] }, "attributes": { "type": "object", "properties": { "email": { "type": "string", "format": "email", "description": "The email address of the invited user." }, "role": { "type": "string", "description": "The role assigned to the invited user." }, "status": { "type": "string", "description": "The current status of the invitation.", "enum": [ "pending", "accepted", "expired" ] }, "created_at": { "type": "string", "format": "date-time", "description": "The date and time the invitation was created." } } } } }