Create Service Extension Schema
POST /metadata/services/extensions | |
Available since: 8.0.200.00
|
Description
Creates an extension schema for service resources. Your application must create a schema which defines the state extension before this extension can be used. For instance, if your application needs to fill in feedback data in some state, the first step is to create the corresponding schema which details the lists of attributes that compose this extension. See Extension for further details.
Operation
ID | CV.WS.SRV.META.1 | ||
---|---|---|---|
Method | POST | ||
URL | /metadata/services/extensions | ||
Name | Type | Mandatory | Description |
Body: The Schema of the Service Extension <ref>This body contains a complete Extension Schema resource, which defines the service extension to create.</ref> | |||
name | string | yes | The unique name of the extension. The name, which is not case-sensitive, must start with a letter to be followed with letters, numbers, or underscores (_). The name is restricted to a maximum of 26 characters. (Maximum RDBMS shared limit on creation of index.) |
type | token
|
yes | Extensions come in the following forms:
|
attributes | Attribute Schema[] | yes | The array of attribute schemas. |
unique | string[] | no | Lists attributes (separated by commas) which are unique in the scope of a given service. The resource cannot include several extension records with identical values for these attributes. |
<references />
Response
The Context Management Service API answers with HTTP codes for every request. The following table shows the correct response for a successful request. See HTTP Response Codes and Errors for further details on the possible codes that this operation can return.
HTTP code | 201 |
---|---|
HTTP message | Created |
Header | Location: /metadata/services/extensions/${extension-name}
where:
|
Body | { "name": "${extension-name}"}
where:
|
Example
Operation
POST /metadata/services/extensions { "attributes": [ {"name":"FeedbackType","type":"string","length":"10","mandatory":"true"}, {"name":"rating","type":"integer","mandatory":"true"}, {"name":"notes","type":"string","length":256,"mandatory":"false"} ], "name":"Feedback", "type":"single-valued" }
Result
201 Created { "name": "Feedback"}
This page was last edited on November 23, 2017, at 16:01.
Comments or questions about this documentation? Contact us for support!