Skip to main content

Web Service Method: Request Details about a GraphEditor

Abstract

Web Service Method: Request Details about a GraphEditor

Description

Request details of a GraphEditor.

URL: /PoolParty/api/editor/{project}/details/{editorId}

Request

Supported Methods

GET

Content-Type

*/*

Path Variables

Variable

Description

{editorId}

The ID of the GraphEditor you want to request the information about.

Response

Content-Type: application/json

Response Attributes

Common base response defining the minimum result structure and semantics.

Editor details will be displayed with these attributes:

Attribute

Type

Comment

baseUrl

String

Base URL for creation of new resources.

created

Literal

Created date of the GraphEditor.

creator

IRI

Creator of GraphEditor.

customschemes

Array of IRI

Custom scheme(s) used in GraphEditor.

graphs

Array of JsonGraph

One or more graph(s) used for editing and lookup.

repository

IRI

Repository ID as specified in Semantic Middleware.

title

String

Title for GraphEditor.

Example Response

{
  "baseUrl" : "some baseUrl",
  "creator" : {
    "uri" : "https://semantic-web.com/api/creator#15332"
  },
  "graphs" : [ {
    "context" : {
      "uri" : "https://semantic-web.com/api/context#15440"
    },
    "readOnly" : true,
    "priority" : 26114
  }, {
    "context" : {
      "uri" : "https://semantic-web.com/api/context#31254"
    },
    "readOnly" : true,
    "priority" : 2681
  } ],
  "created" : {
    "language" : "en",
    "label" : "Label 15654"
  },
  "customschemes" : [ {
    "uri" : "https://semantic-web.com/api/customschemes#13435"
  } ],
  "repository" : {
    "uri" : "https://semantic-web.com/api/repository#10117"
  },
  "title" : "All about Chuck Norris"
}