Skip to content

Instantly share code, notes, and snippets.

@zdravko-il
Last active December 19, 2023 10:55
Show Gist options
  • Save zdravko-il/13d3dca1401d2513cab913736a658d70 to your computer and use it in GitHub Desktop.
Save zdravko-il/13d3dca1401d2513cab913736a658d70 to your computer and use it in GitHub Desktop.
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://example.com/customer/v1.json",
"type": "object",
"title": "Customer event",
"properties": {
"name": {
"type": "string",
"description": "Customer's full name",
"tags": [
"PII"
]
},
"email": {
"type": "string",
"description": "Customer's e-mail address",
"tags": [
"PII"
]
},
"email_consent": {
"type": "boolean",
"description": "Does the customer consent to marketing emails"
},
"id": {
"type": "string",
"description": "Customer's unique ID"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment