Sha256: 492f73e0331ce6b264d842d14df3e0d4fc6b284784370a55117af4ca3ded9935

Contents?: true

Size: 1.01 KB

Versions: 126

Compression:

Stored size: 1.01 KB

Contents

{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "definitions": {
    "point": {
      "type": "object",
      "properties": {
        "line": {
          "type": "integer"
        },
        "column": {
          "type": "integer"
        }
      },
      "required": ["line", "column"]
    },
    "buffer": {
      "type": "object",
      "properties": {
        "name": {
          "oneOf": [
            {
              "type": "string"
            },
            {
              "type": "null"
            }
          ]
        }
      },
      "required": ["name"]
    },
    "location": {
      "type": "object",
      "properties": {
        "start": {
          "$ref": "#/definitions/point"
        },
        "end": {
          "$ref": "#/definitions/point"
        },
        "buffer": {
          "$ref": "#/definitions/buffer"
        }
      },
      "required": ["start", "end", "buffer"]
    }
  },
  "oneOf": [
    {
      "$ref": "#/definitions/location"
    },
    {
      "type": "null"
    }
  ]
}

Version data entries

126 entries across 126 versions & 3 rubygems

Version Path
rbs-relaxed-3.9.0.1 schema/location.json
rbs-3.8.1 schema/location.json
rbs-3.8.0 schema/location.json
rbs-3.8.0.pre.1 schema/location.json
rbs-3.7.0.pre.1 schema/location.json
rbs-3.7.0.dev.1 schema/location.json
rbs-3.6.1 schema/location.json
rbs-3.6.0 schema/location.json
rbs-3.6.0.pre.3 schema/location.json
rbs-3.6.0.pre.2 schema/location.json
rbs-3.6.0.pre.1 schema/location.json
rbs-3.6.0.dev.1 schema/location.json
rbs-3.5.3 schema/location.json
rbs-3.5.2 schema/location.json
rbs-3.5.1 schema/location.json
rbs-3.5.1.pre.1 schema/location.json
rbs-3.5.0 schema/location.json
rbs-3.5.0.pre.2 schema/location.json
rbs-3.5.0.pre.1 schema/location.json
rbs-3.4.4 schema/location.json