Sha256: 1eb6df35c90d4ff53253722058d948a66b2b2e904afe30d8305e401cefaf035e
Contents?: true
Size: 1.42 KB
Versions: 1
Compression:
Stored size: 1.42 KB
Contents
{ "$schema": "http://json-schema.org/draft-03/schema#", "id": "area.json#", "title": "Area", "description": "A geographic area whose geometry may change over time", "type": "object", "properties": { "id": { "description": "The area's unique identifier", "type": ["string", "null"] }, "name": { "description": "A primary name", "type": ["string", "null"] }, "identifier": { "description": "An issued identifier", "type": ["string", "null"] }, "classification": { "description": "An area category, e.g. city", "type": ["string", "null"] }, "parent_id": { "description": "The ID of the area that contains this area", "type": ["string", "null"] }, "parent": { "description": "The area that contains this area", "$ref": "area.json#" }, "geometry": { "description": "A geometry", "type": ["object", "null"] }, "created_at": { "description": "The time at which the resource was created", "type": ["string", "null"], "format": "date-time" }, "updated_at": { "description": "The time at which the resource was last modified", "type": ["string", "null"], "format": "date-time" }, "sources": { "description": "URLs to documents from which the area is derived", "type": "array", "items": { "$ref": "link.json#" } } } }
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
pupa-0.2.4 | schemas/popolo/area.json |