Debian · Schema

Debian Source Package

A Debian source package with name, version, and metadata.

Bug TrackerDebianLinuxOpen SourceOperating SystemPackage ManagementSource Code

Properties

Name Type Description
package string
version string
suites array
maintainer string
uploaders array
section string
priority string
homepage string
vcs_browser string
vcs_git string
View JSON Schema on GitHub

JSON Schema

debian-package.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/debian/json-schema/debian-package.json",
  "title": "Debian Source Package",
  "description": "A Debian source package with name, version, and metadata.",
  "type": "object",
  "properties": {
    "package": {"type": "string"},
    "version": {"type": "string"},
    "suites": {"type": "array", "items": {"type": "string"}},
    "maintainer": {"type": "string"},
    "uploaders": {"type": "array", "items": {"type": "string"}},
    "section": {"type": "string"},
    "priority": {"type": "string"},
    "homepage": {"type": "string", "format": "uri"},
    "vcs_browser": {"type": "string", "format": "uri"},
    "vcs_git": {"type": "string"}
  },
  "required": ["package", "version"]
}