Guest User

Untitled

a guest
Aug 10th, 2014
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. {
  2.     "$schema": "http://iglucentral.com/schemas/com.snowplowanalytics.self-desc/schema/jsonschema/1-0-0#",
  3.     "description": "Schema for a mycompany  custom global context",
  4.     "self": {
  5.         "vendor": "com.mycompany.contexts",
  6.         "name": "global",
  7.         "format": "jsonschema",
  8.         "version": "1-0-0"
  9.     },
  10.  
  11.     "type": "object",
  12.  
  13.     "properties": {
  14.  
  15.         "user_lang_local": {
  16.             "type": "string",
  17.         },
  18.         "user_lang_target": {
  19.             "type": "string",
  20.         },
  21.  
  22.         "user_premium_type": {
  23.             "type": "string",
  24.         },
  25.  
  26.         "user_langlevel": {
  27.             "type": "integer",
  28.         },
  29.  
  30.         "user_xp_level": {
  31.             "type": "integer",
  32.         },
  33.  
  34.         "abtest": {
  35.             "type": "string",
  36.         },
  37.  
  38.     },
  39.  
  40.     "required": ["user_premium_type", "user_lang_target","user_lang_local","user_xp_level"],
  41.     "additionalProperties": false
  42. }
Advertisement
Add Comment
Please, Sign In to add comment