4.2.4 Method Download

This method returns a specific information model for the supplied information model identifier.

Signature

/informationmodel/download/{identifier}

Parameters

String Identifier (required) The information model identifier returned from any of the methods “find”, “namespaces” or “names”.

Request Body Schema

None

Responses

HTTP CodeDescription
200The OPC UA Information model and its metadata of type NameSpace.
400The identifier provided could not be parsed.
404The identifier provided could not be found in the UA Cloud Library.

Response Body Schema

{
  "title": "string",
  "version": "string",
  "license": 0,
  "copyrightText": "string",
  "contributor": {
    "name": "string",
    "description": "string",
    "logoUrl": "string",
    "contactEmail": "string",
    "website": "string",
  },
  "description": "string",
  "category": {
    "name": "string",
    "description": "string",
    "iconUrl": "string",
  },
  "nodeSet": {
    "nodesetXml": "string",
    "publicationDate": "2022-01-25T19:52:09.664Z",
    "lastModifiedDate": "2022-01-25T19:52:09.664Z"
  },
  "documentationUrl": "string",
  "iconUrl": "string",
  "licenseUrl": "string",
  "keywords": [
    "string"
  ],
  "purchasingInformationUrl": "string",
  "releaseNotesUrl": "string",
  "testSpecificationUrl": "string",
  "supportedLocales": [
    "string"
  ],
  "numberOfDownloads": 0,
  "additionalProperties": [
    {
      "name": "string",
      "value": "string"
    }
  ]
}