Last active
December 19, 2023 10:55
-
-
Save zdravko-il/13d3dca1401d2513cab913736a658d70 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$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