Skip to content

Instantly share code, notes, and snippets.

@JonMerlevede
Created November 23, 2020 15:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JonMerlevede/2ad3b3fda74d46d0a5be57dcc1f3a23f to your computer and use it in GitHub Desktop.
Save JonMerlevede/2ad3b3fda74d46d0a5be57dcc1f3a23f to your computer and use it in GitHub Desktop.
{
"$schema": "http://iglucentral.com/schemas/com.snowplowanalytics.self-desc/schema/jsonschema/1-0-0#",
"description": "Schema for an auth0 log entry",
"self": {
"vendor": "com.acme",
"name": "auth0_log",
"format": "jsonschema",
"version": "1-0-0"
},
"type": "object",
"properties": {
"log_id": {
"type": "string",
"description": "Log id",
"maxLength": 100
},
"type": {
"type": "string",
"description": "Log type",
"maxLength": 100
},
"description": {
"type": "string",
"description": "Log description",
"maxLength": 10000
},
"client_id": {
"type": "string",
"description": "Client id",
"maxLength": 32
},
"client_name": {
"type": "string",
"description": "Client name",
"maxLength": 100
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment