Sha256: e8c82625a171af1a6648cba78a2d0316f6f7efbeb912cb3a5b9d17351ec4c50c

Contents?: true

Size: 1.68 KB

Versions: 10

Compression:

Stored size: 1.68 KB

Contents

{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "id": "vectorRepresentation.json#",
  "type": "object",
  "description": "Information about the vector spatial objects in the resource",
  "example": "../examples/vectorRepresentation.json",
  "minProperties": 1,
  "additionalProperties": true,
  "properties": {
    "topologyLevel": {
      "type": "string",
      "description": "Identifies the degree of complexity of the spatial relationships",
      "translation": {}
    },
    "vectorObject": {
      "type": "array",
      "minItems": 1,
      "description": "Information about the geometric objects used in the resource",
      "translation": {},
      "items": {
        "$ref": "#/definitions/vectorObject"
      }
    }
  },
  "anyOf": [{
    "title": "vectorObject is required",
    "required": ["vectorObject"]
  }, {
    "title": "topologyLevel is required",
    "required": ["topologyLevel"]
  }],
  "definitions": {
    "vectorObject": {
      "type": "object",
      "description": "Information about the geometric objects used in the resource.",
      "example": "../examples/vectorObject.json",
      "translation": {},
      "required": ["objectType"],
      "additionalProperties": true,
      "properties": {
        "objectType": {
          "type": "string",
          "description": "Name of point or vector objects used to locate zero-, one-, two-, or three-dimensional spatial locations in the resource.",
          "translation": {},
          "minLength": 1
        },
        "objectCount": {
          "type": "integer",
          "description": "The total number of point or vector objects occurring in the dataset.",
          "translation": {}
        }
      }
    }
  }
}

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
adiwg-mdjson_schemas-2.7.0 schema/vectorRepresentation.json
adiwg-mdjson_schemas-2.6.3 schema/vectorRepresentation.json
adiwg-mdjson_schemas-2.6.2 schema/vectorRepresentation.json
adiwg-mdjson_schemas-2.6.1 schema/vectorRepresentation.json
adiwg-mdjson_schemas-2.6.0 schema/vectorRepresentation.json
adiwg-mdjson_schemas-2.5.1 schema/vectorRepresentation.json
adiwg-mdjson_schemas-2.5.0 schema/vectorRepresentation.json
adiwg-mdjson_schemas-2.4.9 schema/vectorRepresentation.json
adiwg-mdjson_schemas-2.4.8 schema/vectorRepresentation.json
adiwg-mdjson_schemas-2.4.7 schema/vectorRepresentation.json