File: manual_schema.yml

package info (click to toggle)
jq 1.8.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,852 kB
  • sloc: ansic: 28,064; yacc: 888; sh: 841; python: 316; cpp: 314; lex: 192; makefile: 181; javascript: 34
file content (60 lines) | stat: -rw-r--r-- 1,339 bytes parent folder | download
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
type: object
required:
  - headline
  - body
  - manpage_intro
  - manpage_epilogue
  - sections
additionalProperties: false
properties:
  headline:
    type: string
  body:
    type: string
  manpage_intro:
    type: string
  manpage_epilogue:
    type: string
  sections:
    type: array
    items:
      type: object
      required:
        - title
      additionalProperties: false
      properties:
        title:
          type: string
        body:
          type: string
        entries:
          type: array
          items:
            type: object
            required:
              - title
              - body
            additionalProperties: false
            properties:
              title:
                type: string
              body:
                type: string
              examples:
                type: array
                items:
                  type: object
                  required:
                    - program
                    - input
                    - output
                  additionalProperties: false
                  properties:
                    program:
                      type: string
                    input:
                      type: string
                    output:
                      type: array
                      items:
                        type: string