GET DataModels/Get/{ID}

Gets a specific DataModel by ID

Request Information

URI Parameters

NameDescriptionTypeAdditional information
ID

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

DataModelDTO
NameDescriptionTypeAdditional information
Name

Name

string

None.

Description

Description

string

None.

RequiresConfiguration

Determines whether Data Model Requires Configuration

boolean

None.

QueryComposer

Gets or sets if the datamodel is supported by QueryComposer processor.

boolean

None.

ID

globally unique identifier

None.

Timestamp

Collection of byte

None.

Response Formats

application/json, text/json

Sample:
{
  "results": [
    {
      "Name": "sample string 1",
      "Description": "sample string 2",
      "RequiresConfiguration": true,
      "QueryComposer": true,
      "ID": "7bf0086e-ae4c-4139-9df8-7d8b586945c6",
      "Timestamp": "QEA="
    }
  ]
}

text/javascript

Sample:
{"results":[{"Name":"sample string 1","Description":"sample string 2","RequiresConfiguration":true,"QueryComposer":true,"ID":"7bf0086e-ae4c-4139-9df8-7d8b586945c6","Timestamp":"QEA="}]}

application/bson

Sample:
Binary JSON content. See http://bsonspec.org for details.

application/xml, text/xml

Sample:
<DataModelDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Lpp.Dns.DTO">
  <ID xmlns="http://schemas.datacontract.org/2004/07/Lpp.Objects">7bf0086e-ae4c-4139-9df8-7d8b586945c6</ID>
  <Timestamp xmlns="http://schemas.datacontract.org/2004/07/Lpp.Objects">QEA=</Timestamp>
  <Description>sample string 2</Description>
  <Name>sample string 1</Name>
  <QueryComposer>true</QueryComposer>
  <RequiresConfiguration>true</RequiresConfiguration>
</DataModelDTO>