Sha256: a5ab79b76e47c1a327227b7a69f1f2bc9c522fffa76bd1c659aee2f6483f3eff

Contents?: true

Size: 1.42 KB

Versions: 5

Compression:

Stored size: 1.42 KB

Contents

{
  "id": "http://inqlude.org/schema/release-manifest-v1#",
  "$schema": "http://json-schema.org/draft-04/schema#",
  "title": "Inqlude Release Manifest Schema",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "release_date": {
      "type": "string"
    },
    "version": {
      "type": "string"
    },
    "summary": {
      "type": "string"
    },
    "urls": {
      "type": "object",
      "properties": {
        "homepage": {
          "type": "string"
        },
        "download": {
          "type": "string"
        }
      },
      "required": [ "homepage" ]
    },
    "licenses": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "minItems": 1
    },
    "description": {
      "type": "string"
    },
    "authors": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "maturity": {
      "type": "string"
    },
    "platforms": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "minItems": 1
    },
    "packages": {
      "type": "object",
      "properties": {
        "source": {
          "type": "string"
        }
      },
      "required": [ "source" ]
    },
    "group": {
      "type": "string"
    }
  },
  "required": [ "$schema", "name", "release_date", "version", "summary",
                "urls", "licenses", "description", "maturity", "platforms",
                "packages" ]
}

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
inqlude-0.7.4 schema/release-manifest-v1
inqlude-0.7.3 schema/release-manifest-v1
inqlude-0.7.2 schema/release-manifest-v1
inqlude-0.7.1 schema/release-manifest-v1
inqlude-0.7.0 schema/release-manifest-v1