action aucklandmuseum_get_subject { label: "Explore details about a given subject node" description: "Gets information about a `subject` identified by the `identifier`.\n\nThe response format depends upon the `Accept` header.\n - `text/html` - the default response type. Returned data can be easily viewed in any modern Internet Browser\n - `application/ld+json` - the response will be in [JSON-LD](http://json-ld.org/)\n - `application/json` - the response will be a simple JSON Object with keys (predicates) and values (objects).\n" provider: aucklandmuseum method: GET path: "/id/{identifier}" encoding: json input: { type: "object" properties: { identifier: { type: "string" } } required: ["identifier"] additionalProperties: false } output: { type: "object" additionalProperties: true } }