-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathschema.yaml
39 lines (39 loc) · 937 Bytes
/
schema.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
---
$schema: "http://json-schema.org/draft-04/schema#"
title: "Bioboxes profiling benchmark input file validator"
type: "object"
additionalProperties: false
required:
- "version"
- "arguments"
properties:
version:
type: "string"
pattern: "^0.1.\\d+$"
arguments:
additionalProperties: false
type: "object"
required:
- "ground_truth"
- "prediction"
properties:
prediction:
type: "object"
required:
- "path"
- "format"
properties:
format:
enum:
- "bioboxes.org:/profiling:0.9"
path: {}
ground_truth:
type: "object"
required:
- "path"
- "format"
properties:
format:
enum:
- "bioboxes.org:/profiling:0.9"
path: {}