Portal Data Type

Properties
name data type description
config PortalConfiguration The configuration of this portal.
Properties inherited from PortalBase
name string The name of the portal.
url string The URL of the portal. Usually there is a website at this address.
Properties inherited from BaseInt
id number The id of the entity.
Properties inherited from Base
createdBy string The id of the user who created this entity.

This entity is read only and populated by the service. It is ignored when saving entities.

creationDate string The timestamp of the cration of this entity. The timestamp is in the timezone Europe/Berlin by default.

This entity is read only and populated by the service. It is ignored when saving entities.

links array of Link A collection of Links related to this entity.

This entity is read only and populated by the service. It is ignored when saving entities.

modifiedBy string The id of the user who changed this entity last.

This entity is read only and populated by the service. It is ignored when saving entities.

modificationDate string The timestamp of the last modification on this entity. The timestamp is in the timezone Europe/Berlin by default.

This entity is read only and populated by the service. It is ignored when saving entities.

userAlloewdToEdit boolean Indicates weather the user who made the request is allowed to edit this entity or not.

This entity is read only and populated by the service. It is ignored when saving entities.

obfuscated boolean Indicate weather the data is obfuscated

This entity is read only and populated by the service. It is ignored when saving entities.

allowedOperations array of Operation

Example

{
  "config" : {
    "exportPolicies" : [ "NO_CSV_EXPORT_FOR_NOT_APPROVED_USERS", "NO_CSV_EXPORT_FOR_NOT_APPROVED_USERS" ],
    "staticMapStyle" : "FLORA_MV",
    "defaultDataEntrySurveyId" : 12345,
    "mapInitialZoom" : 12345.0,
    "mapInitialLatitude" : 12345.0,
    "mapInitialLongitude" : 12345.0,
    "mapOverlayLayers" : [ "MTB", "ORTHOFOTO_MV" ],
    "maxUploadSize" : 12345,
    "allowAnonymousAccess" : true,
    "coordinateSystems" : [ "EPSG31468", "EPSG31468" ],
    "taxonListIds" : [ 12345, 12345 ],
    "dataExchangeMasterPortalId" : 12345,
    "dataExchangePortalIds" : [ 12345, 12345 ],
    "distmapStartYear" : 12345,
    "distmapRequiredValidations" : [ "IMPROBALE", "IMPROBALE" ]
  },
  "name" : "...",
  "url" : "...",
  "id" : 12345,
  "createdBy" : "...",
  "creationDate" : "...",
  "links" : [ {
    "href" : "...",
    "rel" : "..."
  }, {
    "href" : "...",
    "rel" : "..."
  } ],
  "modifiedBy" : "...",
  "modificationDate" : "...",
  "userAlloewdToEdit" : true,
  "obfuscated" : true,
  "allowedOperations" : [ "UPDATE", "UPDATE" ]
}