-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdescription.schema.yml
62 lines (62 loc) · 1.27 KB
/
description.schema.yml
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
title: 'OCR engine model description metadata'
type: 'object'
additionalProperties: false
required:
- 'author'
- 'author-email'
- 'files'
- 'license'
- 'modified'
- 'name'
- 'summary'
- 'url'
properties:
name:
type: 'string'
title: 'Name of the model, filename for kraken models'
supported_engines:
type: 'array'
minSize: 1
items:
format:
type: 'string'
title: 'Format of the model'
enum:
- 'clstm'
- 'hdf5'
- 'pronn'
- 'pyrnn'
- 'pyrnn.gz'
- 'tesseract-2'
- 'tesseract-3.01'
- 'tesseract-3.03'
summary:
type: 'string'
title: 'A summary of the model'
author:
type: 'string'
title: 'Creator of the model'
author-email:
type: 'string'
pattern: '^([^@]+@[^@]+|unknown)$'
title: 'E-mail address of the creator of the model'
license:
type: 'string'
title: 'License of the model'
enum:
- 'Apache 2.0'
- 'CC0'
url:
type: 'string'
format: 'uri'
title: 'Landing page for the model or homepage of the creator'
modified:
type: 'string'
format: 'date-time'
title: 'Date of last modification'
files:
type: 'array'
title: 'Files that make up this model'
items:
type: 'string'
title: 'Filename'