schemas/popolo/person.json in pupa-0.2.3 vs schemas/popolo/person.json in pupa-0.2.4

- old
+ new

@@ -1,8 +1,8 @@ { "$schema": "http://json-schema.org/draft-03/schema#", - "id": "http://www.popoloproject.com/schemas/person.json#", + "id": "person.json#", "title": "Person", "description": "A real person, alive or dead", "type": "object", "properties": { "id": { @@ -15,18 +15,18 @@ }, "other_names": { "description": "Alternate or former names", "type": "array", "items": { - "$ref": "http://www.popoloproject.com/schemas/other_name.json#" + "$ref": "other_name.json#" } }, "identifiers": { "description": "Issued identifiers", "type": "array", "items": { - "$ref": "http://www.popoloproject.com/schemas/identifier.json#" + "$ref": "identifier.json#" } }, "family_name": { "description": "One or more family names", "type": ["string", "null"] @@ -93,25 +93,25 @@ }, "contact_details": { "description": "Means of contacting the person", "type": "array", "items": { - "$ref": "http://www.popoloproject.com/schemas/contact_detail.json#" + "$ref": "contact_detail.json#" } }, "links": { "description": "URLs to documents about the person", "type": "array", "items": { - "$ref": "http://www.popoloproject.com/schemas/link.json#" + "$ref": "link.json#" } }, "memberships": { "description": "Memberships", "type": "array", "items": { - "$ref": "http://www.popoloproject.com/schemas/membership.json#" + "$ref": "membership.json#" } }, "created_at": { "description": "The time at which the resource was created", "type": ["string", "null"], @@ -124,10 +124,10 @@ }, "sources": { "description": "URLs to documents from which the person is derived", "type": "array", "items": { - "$ref": "http://www.popoloproject.com/schemas/link.json#" + "$ref": "link.json#" } } } }