summaryrefslogtreecommitdiff
path: root/projects/project.schema.yaml
blob: 52a7b802328d47843b5e31b3c39f9052dbf18c85 (plain)
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
---

## See https://pykwalify.readthedocs.io/en/unstable/validation-rules.html

schema;gitcommit:
  desc: SHA1 in the form \b[0-9a-f]{12,40}\b.*
  type: str
  pattern: \b[0-9a-f]{12,40}\b.*

schema;uuid:
  desc: Unique key defining items and relationship links.
        Generated by the application 'uuid'
  type: str
  pattern: \b[0-9a-f]{8}-([0-9a-f]{4}-){3}[0-9a-f]{12}\b


###
### Our main schema
###

type: map
mapping:
  title:
    type: str
    required: True

  team:
    type: str
    required: True
    enum: ['Core', 'IO', 'MM']

  assignee:
    type: str
    required: True

  key:
    include: uuid
    required: True

  status:
    type: str
    required: True
    enum: ['New', 'Active', 'Blocked', 'Paused', 'Done', 'Abandoned']

# Optional Fields
  assigneee:
    type: str

  bsp-commits:
    desc: A sequence / list of related BSP commits
          https://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas-bsp.git/commit/?id=
    sequence:
    - include: gitcommit

  upstream-commits:
    desc: References to upstream commits
    sequence:
    - mapping:
        torvalds:
          desc: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=
          sequence:
          - include: gitcommit
        linux-next:
          desc: https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git/commit/?id=
          sequence:
          - include: gitcommit

  parent:
    desc: A reference to another topic key which must already exist
    include: uuid

  dependencies:
    sequence:
    - include: uuid
      unique: True

  target-date:
    type: date

  comments:
    sequence:
    - type: str