Description |
---|
Create and configure a new resource in a GraphEditor. |
URL: /PoolParty/api/editor/{project}/createResource
Supported Methods |
---|
POST |
application/json
Parameter | Type | Required | Description |
---|---|---|---|
editor | IRI JSON representation of an IRI object. | true | An editor value. |
https://vocabulary.semantic-web.at/PoolParty/api/editor/{projectId}/createResource?editor=rdfEditor:123456
Attribute | Type | Comment |
---|---|---|
| String | The string value of the URI. URIs must contain a colon ':' and must not contain any whitespaces. |
Attribute | Type |
---|---|
graph | String |
label | Literal |
property | String |
suffix | String |
types | Array of String |
{
"uri" : "https://semantic-web.com/api/uri#5233"
}
{
"types" : [ "http://vocabulary.semantic-web.at/cocktail-ontology/Ingredients", "http://vocabulary.semantic-web.at/cocktail-ontology/Alcoholic-Beverages" ],
"property" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"label" : {
"language" : "en-us",
"label" : "New Ingredient"
},
"suffix" : "",
"graph" : "http://yourGraph"
}
Attribute | Type | Comment |
---|---|---|
context | IRI | Graph uri |
priority | int | Graph priority for adding of new resource |
readOnly | boolean | True only if graph can be used for lookup. False if new resources can be created in this graph |
{
"context" : {
"uri" : "https://semantic-web.com/api/context#26767"
},
"readOnly" : true,
"priority" : 28780
}
application/json
Attribute | Type |
---|---|
context | String |
uri | String |
{
"context" : "some context",
"uri" : "https://semantic-web.com/api/uri#17623"
}