mirror of https://github.com/roytam1/UXP
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
727 B
24 lines
727 B
{ |
|
"$schema": "http://json-schema.org/draft-04/schema#", |
|
"type": "object", |
|
"properties": { |
|
"argv": {"type": "array"}, |
|
"system": { |
|
"type": "object", |
|
"properties": { |
|
"architecture": {"type": "array"}, |
|
"linux_distribution": {"type": "array"}, |
|
"mac_ver": {"type": "array"}, |
|
"machine": {"type": "string"}, |
|
"python_version": {"type": "string"}, |
|
"release": {"type": "string"}, |
|
"system": {"type": "string"}, |
|
"version": {"type": "string"}, |
|
"win_ver": {"type": "array"} |
|
}, |
|
"required": ["architecture", "machine", "python_version", |
|
"release", "system", "version"] |
|
} |
|
}, |
|
"required": ["argv", "system"] |
|
}
|
|
|