Skip to content

Commit

Permalink
initial schema
Browse files Browse the repository at this point in the history
  • Loading branch information
pbelmann committed Jan 19, 2016
1 parent f8f5cf1 commit f03f05e
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions container/profiling-evaluation/schema.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,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: {}

0 comments on commit f03f05e

Please sign in to comment.