| { |
| "$schema": "http://json-schema.org/draft-07/schema#", |
| "allOf": [ |
| { |
| "$ref": "common.json#/definitions/sdk_element" |
| }, |
| { |
| "additionalProperties": false, |
| "properties": { |
| "name": { |
| "description": "Name of the Python test", |
| "type": "string" |
| }, |
| "root": { |
| "$ref": "common.json#/definitions/file", |
| "description": "The root path to the Python test directory" |
| }, |
| "files": { |
| "$ref": "#/definitions/fileGroup", |
| "description": "Target architecture-generic files for this test" |
| }, |
| "type": { |
| "allOf": [ |
| { |
| "$ref": "common.json#/definitions/kind" |
| }, |
| { |
| "enum": [ |
| "experimental_python_e2e_test" |
| ] |
| } |
| ] |
| } |
| }, |
| "required": [ |
| "root", |
| "name", |
| "type", |
| "files" |
| ] |
| } |
| ], |
| "definitions": { |
| "fileGroup": { |
| "description": "A collection of files", |
| "items": { |
| "$ref": "common.json#/definitions/file" |
| }, |
| "minItems": 1, |
| "type": "array" |
| } |
| }, |
| "description": "A Python end-to-end test", |
| "id": "http://fuchsia.com/schemas/sdk/experimental_python_e2e_test.json", |
| "type": "object" |
| } |