-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add com.scientiamobile.wurfl/cloud_capabilities/jsonschema/1-0-0 (close
#577) - WIP
- Loading branch information
1 parent
67615bf
commit 8227623
Showing
1 changed file
with
91 additions
and
0 deletions.
There are no files selected for viewing
91 changes: 91 additions & 0 deletions
91
schemas/com.scientiamobile.wurfl/cloud_capabilities/jsonschema/1-0-0
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
{ | ||
"$schema": "http://iglucentral.com/schemas/com.snowplowanalytics.self-desc/schema/jsonschema/1-0-0#", | ||
"description": "Schema for the 23 capabilities available from Wurfl Cloud, https://www.scientiamobile.com/wurflCapability", | ||
"self": { | ||
"vendor": "com.scientiamobile.wurfl", | ||
"name": "cloud_capabilities", | ||
"version": "1-0-0", | ||
"format": "jsonschema" | ||
}, | ||
"type": "object", | ||
"properties": { | ||
"advertised_app_name": { | ||
"type": ["string", "null"], | ||
"maxLength": 255 | ||
}, | ||
"advertised_browser": { | ||
"type": ["string", "null"], | ||
"maxLength": 255 | ||
}, | ||
"advertised_browser_version": { | ||
"type": ["string", "null"], | ||
"maxLength": 255 | ||
}, | ||
"advertised_device_os": { | ||
"type": ["string", "null"], | ||
"maxLength": 255 | ||
}, | ||
"advertised_device_os_version": { | ||
"type": ["string", "null"], | ||
"maxLength": 255 | ||
}, | ||
"complete_device_name": { | ||
"type": ["string", "null"], | ||
"maxLength": 255 | ||
}, | ||
"device_name": { | ||
"type": ["string", "null"], | ||
"maxLength": 255 | ||
}, | ||
"form_factor": { | ||
"enum": ["Desktop", "Tablet", "Smartphone", "Feature Phone", "Smart-TV", "Robot", "Other non-Mobile", "Other Mobile", null], | ||
"maxLength": 255 | ||
}, | ||
"is_android": { | ||
"type": ["boolean", "null"] | ||
}, | ||
"is_app": { | ||
"type": ["boolean", "null"] | ||
}, | ||
"is_app_webview": { | ||
"type": ["boolean", "null"] | ||
}, | ||
"is_full_desktop": { | ||
"type": ["boolean", "null"] | ||
}, | ||
"is_html_preferred": { | ||
"type": ["boolean", "null"] | ||
}, | ||
"is_ios": { | ||
"type": ["boolean", "null"] | ||
}, | ||
"is_largescreen": { | ||
"type": ["boolean", "null"] | ||
}, | ||
"is_mobile": { | ||
"type": ["boolean", "null"] | ||
}, | ||
"is_phone": { | ||
"type": ["boolean", "null"] | ||
}, | ||
"is_robot": { | ||
"type": ["boolean", "null"] | ||
}, | ||
"is_smartphone": { | ||
"type": ["boolean", "null"] | ||
}, | ||
"is_touchscreen": { | ||
"type": ["boolean", "null"] | ||
}, | ||
"is_windows_phone": { | ||
"type": ["boolean", "null"] | ||
}, | ||
"is_wml_preferred": { | ||
"type": ["boolean", "null"] | ||
}, | ||
"is_xhtmlmp_preferred": { | ||
"type": ["boolean", "null"] | ||
} | ||
}, | ||
"additionalProperties": true | ||
} |