action optimade_get_info_info_get { label: "Get Info" provider: optimade method: GET path: "/info" encoding: json output: { type: "object" description: "errors are not allowed" required: ["data", "meta"] properties: { data: { description: "The implementations /info data" type: "object" } errors: { type: "array" description: "A list of unique errors" items: { type: "object" description: "An error response" properties: { code: { type: "string" description: "an application-specific error code, expressed as a string value." } detail: { type: "string" description: "A human-readable explanation specific to this occurrence of the problem." } id: { type: "string" description: "A unique identifier for this particular occurrence of the problem." } links: { description: "A links object storing about" type: "object" } meta: { description: "a meta object containing non-standard meta-information about the error." type: "object" } source: { description: "An object containing references to the source of the error" type: "object" } status: { type: "string" description: "the HTTP status code applicable to this problem, expressed as a string value." } title: { type: "string" description: "A short, human-readable summary of the problem. It **SHOULD NOT** change from occurrence to occurrence of the problem, except for purposes of localization." } } } } included: { type: "array" description: "A list of unique included resources" items: { type: "object" description: "Resource objects appear in a JSON API document to represent resources." required: ["id", "type"] properties: { attributes: { description: "an attributes object representing some of the resource’s data." type: "object" } id: { type: "string" description: "Resource ID" } links: { description: "a links object containing links related to the resource." type: "object" } meta: { description: "a meta object containing non-standard meta-information about a resource that can not be represented as an attribute or relationship." type: "object" } relationships: { description: "[Relationships object](https://jsonapi.org/format/1.0/#document-resource-object-relationships)\ndescribing relationships between the resource and other JSON API resources." type: "object" } type: { type: "string" description: "Resource type" } } } } jsonapi: { description: "Information about the JSON API used" type: "object" } links: { description: "Links associated with the primary data or errors" type: "object" } meta: { description: "A meta object containing non-standard information" type: "object" } } } }