Skip to content

Commit

Permalink
Now allowing null for com.callrail/call_complete's non-required fields (
Browse files Browse the repository at this point in the history
closes #62)
  • Loading branch information
alexanderdean committed Oct 30, 2014
1 parent d851b38 commit fda58f9
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 33 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Release 10 (2014-10-30)
-----------------------
Updated: com.callrail/call_complete/jsonschema/1-0-0

Release 9 (2014-10-24)
----------------------
Updated: com.adxtracking/app_install/jsonschema/1-0-0
Expand Down
66 changes: 33 additions & 33 deletions schemas/com.callrail/call_complete/jsonschema/1-0-0
Original file line number Diff line number Diff line change
Expand Up @@ -11,110 +11,110 @@
"type": "object",
"properties": {
"answered": {
"type": "boolean"
"type": ["boolean", "null"]
},
"callercity": {
"type": "string"
"type": ["string", "null"]
},
"callercountry": {
"type": "string"
"type": ["string", "null"]
},
"callername": {
"type": "string"
"type": ["string", "null"]
},
"callernum": {
"type": "string"
"type": ["string", "null"]
},
"callerstate": {
"type": "string"
"type": ["string", "null"]
},
"callerzip": {
"type": "string"
"type": ["string", "null"]
},
"callsource": {
"type": "string"
"type": ["string", "null"]
},
"datetime": {
"type": "string",
"format": "date-time"
},
"destinationnum": {
"type": "string"
"type": ["string", "null"]
},
"duration": {
"type": "number"
"type": ["number", "null"]
},
"first_call": {
"type": "boolean"
"type": ["boolean", "null"]
},
"ga": {
"type": "string"
"type": ["string", "null"]
},
"gclid": {
"type": "string"
"type": ["string", "null"]
},
"id": {
"type": "string"
},
"ip": {
"type": "string"
"type": ["string", "null"]
},
"keywords": {
"type": "string"
"type": ["string", "null"]
},
"kissmetrics_id": {
"type": "string"
"type": ["string", "null"]
},
"landingpage": {
"type": "string"
"type": ["string", "null"]
},
"recording": {
"type": "string"
"type": ["string", "null"]
},
"referrer": {
"type": "string"
"type": ["string", "null"]
},
"referrermedium": {
"type": "string"
"type": ["string", "null"]
},
"trackingnum": {
"type": "string"
"type": ["string", "null"]
},
"transcription": {
"type": "string"
"type": ["string", "null"]
},
"utm_campaign": {
"type": "string"
"type": ["string", "null"]
},
"utm_content": {
"type": "string"
"type": ["string", "null"]
},
"utm_medium": {
"type": "string"
"type": ["string", "null"]
},
"utm_source": {
"type": "string"
"type": ["string", "null"]
},
"utm_term": {
"type": "string"
"type": ["string", "null"]
},
"utma": {
"type": "string"
"type": ["string", "null"]
},
"utmb": {
"type": "string"
"type": ["string", "null"]
},
"utmc": {
"type": "string"
"type": ["string", "null"]
},
"utmv": {
"type": "string"
"type": ["string", "null"]
},
"utmx": {
"type": "string"
"type": ["string", "null"]
},
"utmz": {
"type": "string"
"type": ["string", "null"]
}
},
"required": ["datetime", "id"],
Expand Down

0 comments on commit fda58f9

Please sign in to comment.