Sha256: 8daf3b15429d5bb9b7aa93452086e3d465d55a85c8c3c286d72ac0c1a67040de

Contents?: true

Size: 1.34 KB

Versions: 5

Compression:

Stored size: 1.34 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"
    },
    "topics": {
      "type": "array",
      "items": {
       "type": "string"
      },
      "minItems": 1
    },
    "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
    },
    "group": {
      "type": "string"
    }
  },
  "required": [ "$schema", "name", "release_date", "version", "summary",
                "urls", "licenses", "description", "maturity", "platforms" ]
}

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
inqlude-0.12.0 schema/proprietary-release-manifest-v1
inqlude-0.11.0 schema/proprietary-release-manifest-v1
inqlude-0.10.0 schema/proprietary-release-manifest-v1
inqlude-0.9.0 schema/proprietary-release-manifest-v1
inqlude-0.8.0 schema/proprietary-release-manifest-v1