File: control

package info (click to toggle)
golang-github-alecthomas-jsonschema 0.0~git20210127.19bc6f2-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 176 kB
  • sloc: makefile: 4
file content (32 lines) | stat: -rw-r--r-- 1,425 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
Source: golang-github-alecthomas-jsonschema
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Uploaders: Marcelo Jorge Vieira <metal@debian.org>,
           Lucca Braga Godoy Mendonça <lucca.mendonca@gmail.com>
Section: golang
Testsuite: autopkgtest-pkg-go
Priority: optional
Build-Depends: debhelper-compat (= 13),
               dh-golang,
               golang-any,
               golang-github-iancoleman-orderedmap-dev,
               golang-github-stretchr-testify-dev
Standards-Version: 4.5.1
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-alecthomas-jsonschema
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-alecthomas-jsonschema.git
Homepage: https://github.com/alecthomas/jsonschema
Rules-Requires-Root: no
XS-Go-Import-Path: github.com/alecthomas/jsonschema

Package: golang-github-alecthomas-jsonschema-dev
Architecture: all
Depends: golang-github-iancoleman-orderedmap-dev,
         golang-github-stretchr-testify-dev,
         ${misc:Depends}
Description: Generate JSON Schemas from Go types (library)
 This package generates JSON Schemas from Go types through reflection.
 .
 It supports:
    * Arbitrarily complex types, including interface{}, maps, slices, etc.
    * Json-schema features such as minLength, maxLength, pattern, format, etc.
    * Simple string and numeric enums.
    * Custom property fields via the jsonschema_extras struct tag.