{ "$schema": "http://json-schema.org/draft-03/schema#", "id": "post.json#", "title": "Post", "description": "A position that exists independent of the person holding it", "type": "object", "properties": { "id": { "description": "The post's unique identifier", "type": ["string", "null"] }, "label": { "description": "A label describing the post", "type": ["string", "null"] }, "other_label": { "description": "An alternate label", "type": "array", "items": { "type": "string" } }, "role": { "description": "The function that the holder of the post fulfills", "type": ["string", "null"] }, "organization_id": { "description": "The ID of the organization in which the post is held", "type": ["string", "null"] }, "organization": { "description": "The organization in which the post is held", "$ref": "organization.json#" }, "area_id": { "description": "The ID of the geographic area to which this post is related", "type": ["string", "null"] }, "area": { "description": "The geographic area to which this post is related", "$ref": "area.json#" }, "start_date": { "description": "The date on which the post was created", "type": ["string", "null"], "pattern": "^[0-9]{4}(-[0-9]{2}){0,2}$" }, "end_date": { "description": "The date on which the post was eliminated", "type": ["string", "null"], "pattern": "^[0-9]{4}(-[0-9]{2}){0,2}$" }, "contact_details": { "description": "Means of contacting the holder of the post", "type": "array", "items": { "$ref": "contact_detail.json#" } }, "links": { "description": "URLs to documents about the post", "type": "array", "items": { "$ref": "link.json#" } }, "memberships": { "description": "The memberships through which people hold the post in the organization", "type": "array", "items": { "$ref": "membership.json#" } }, "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 post is derived", "type": "array", "items": { "$ref": "link.json#" } } } }