Dette dokumentet beskriver REN Prosjekt API. APIet er grunnleggende for alt som har med REN-prosjekter å gjøre.
For generell informasjon om tilgang, autentisering og bruk av REN API, se Generelt.
For nettlesergrensesnittet til REN Prosjekt, også kalt REN Prosjektsystem, se https://www.ren.no/project.
Dato | Beskrivelse |
---|---|
25.01.2019 |
Første versjon. |
Oppbygging
REN Prosjekt API tilbyr funksjonalitet for opprettelse og sletting av prosjekter, søk blant prosjekter, arkivering m.m.
Den egentlige merverdien i et REN-prosjekt ligger i verktøyene som kan knyttes til prosjektet. Internt kalles disse moduler, og de eksponerer sine egne APIer. REN Prosjekt API inkluderer aktivering, listing og fjerning av moduler, men stopper der. Videre kommunikasjon med moduler gjøres via deres egne APIer. API-kommunikasjon innenfor et REN-prosjekt vil dermed sannsynligvis bruke endepunkter i en rekke forskjellige APIer. Dette er en strukturell ansvarsfordeling og har lite å si for selve bruken av REN webtjenester.
Prosjekt-ID
Prosjekt-ID er den primære identifikatoren for et prosjekt, og skal som regel brukes når man peker ut et prosjekt i APIet. Prosjekt-ID er en intern ID som ikke har betydning utenfor systemet. Derfor bør prosjekt-ID i eksterne system lagres ved opprettelse av REN-prosjekt. Alternativt kan den integrerende parten søke opp prosjekt basert på prosjektnummer, saksnummer og lignende - men vil da være nødt til å håndtere å få treff på flere enn ett prosjekt.
Prosjektnummer er foreløpig, av historiske grunner, unikt per selskap. Når det gamle SOAP-APIet er faset ut vil det være mulig å fjerne denne begrensningen.
-
Det nye REST-APIet forventer således ikke at prosjektnummer er unikt, og integrerende parter må også forholde seg til den muligheten.
-
Samtidig, så lenge begrensningen er der må unike prosjektnummer oppgis. Alternativt må eksisterende prosjekt med samme prosjektnummer slettes før prosjektnummeret kan gjenbrukes.
REN Prosjekt UI
Nettlesergrensesnittet til REN Prosjekt er eksponert på:
Forsiden til et prosjekt kan refereres med:
En aktivert prosjektmodul kan åpnes med:
f.eks.
URL base path
Base path for REN Prosjekt API er https://api.ren.no/public/project/rest
.
Prosjekter
Opprettelse og sletting
Når et prosjekt skal opprettes må en ansvarlig (personlig eier) oppgis. Bodyen skal være en JSON-struktur i samme Project-format som man får når man henter et prosjekt.
Moduler kan aktiveres umiddelbart gjennom query-parameter 'moduleType'.
PUT https://api.ren.no/public/project/rest/projects/by-owner/{ownerUsernameOrEmail}
(API-dokumentasjon)
f.eks.
{ "companyId": 12345, "location": { "address": { "address1": "CONRAD MOHRS VEG", "city": "Bergen", "zipCode": "5068" }, }, "name": "Eksempelprosjekt", "number": "EKSEMPEL-12345", "startDate": "2019-01-01", "status": "NEW" }
Sletting utføres med følgende:
Søke opp prosjekter
Det finnes flere muligheter for å hente, liste og søke opp prosjekter. For å hente informasjon om et enkelt prosjekt med kjent prosjekt-ID benyttes følgende:
For å liste opp alle prosjekter som din bruker har tilgang til kan følgende benyttes:
For å hente alle prosjekter (som din bruker har tilgang til) i et selskap:
Selskaps-IDer er felles i alle REN-system. Du finner IDen for ditt eget selskap fra din egen profil, fra et eksisterende prosjekt eid av selskapet, eller på forespørsel til REN.
Det er også mulig å finne prosjekter basert på prosjektnummer, nettstasjonsnummer (engelsk: substation reference) eller saksnummer (engelsk: case reference):
GET https://api.ren.no/public/project/rest/projects/by-companyid/{companyId}/by-number/{number}
(API-dokumentasjon)
GET https://api.ren.no/public/project/rest/projects/by-companyid/{companyId}/by-substationref/{substationRef}
(API-dokumentasjon)
GET https://api.ren.no/public/project/rest/projects/by-companyid/{companyId}/by-caseref/{caseRef}
(API-dokumentasjon)
For andre søkekriterier samt mer avansert filtrering og paginering kan følgende endepunkt benyttes:
Dette endepunktet muliggjør filtrering på status, prosjektansvarlig, aktiverte modultyper, startdato m.m. Se API dokumentasjonen for detaljer. Dette er også det eneste endepunktet som lar deg søke i prosjektarkivet. For å unngå at prosjekter fra prosjektarkivet blir inkludert med dette endepunktet må 'archived=false' oppgis som query-parameter!
Arkivering
REN prosjekter støtter en forenklet arkiveringsfunksjon. I praksis betyr arkivering at et prosjekt ikke dukker opp i vanlige prosjektlister. For å se arkiverte prosjekter må det komplette søks-og-paginerings-endepunktet benyttes (se forrige paragraf). For å flytte et prosjekt til eller fra arkivet benyttes følgende endepunkter:
Oppdatering
En del (men ikke all) prosjekt-meta-data kan oppdateres. For å dedikert oppdatere status eller ansvarlig kan følgende endepunkter benyttes:
PUT https://api.ren.no/public/project/rest/projects/{projectId}/status/{newStatus}
(API-dokumentasjon)
PUT https://api.ren.no/public/project/rest/projects/{projectId}/owner/{newOwnerUsernameOrEmail}
(API-dokumentasjon)
For oppdatering av andre egenskaper kan et generelt oppdaterings-endepunkt brukes:
Her skal bodyen være en JSON prosjektstruktur i samme format som man får når man henter et prosjekt. Se Project for detaljer. For å unngå at egenskaper blir overskrevet uten vilje, er det anbefalt å oppgi hvilke egenskaper som skal oppdateres med query-parameter property. Her er et eksempel på dette:
{ "status": "STARTED", "endDate": "2019-31-07", "endDateEstimate": "2019-31-07" }
Moduler
Det er mulig å spørre APIet hvilke moduler som er tilgjengelige med brukerens tilganger, i den gjeldende versjonen av REN Prosjekt. REST-endepunkten for dette er:
For å finne ut hvilke moduler som er aktivert i et prosjekt kan følgende REST-endepunkt benyttes:
I et prosjekt vil det aldri finnes flere moduler av samme modultype. Det er tillatt å prøve å aktivere en allerede aktivert modultype, men dette vil ikke ha noen effekt. For aktivering og fjerning av modultyper kan følgende REST-endepunkter benyttes:
API-dokumentasjon
Dokumentasjonen over endepunktene og datastrukturene er generert og skrevet på engelsk. Du kan lese den samt prøve ut endepunktene i REN sin API Browser. Den dokumentasjonen er live-generert og gjenspeiler den versjon som faktisk kjører. Alternativt kan du fortsette å lese en statisk generert versjon her.
Resources
Module
List project modules
GET /modules/by-projectid/{projectId}
Description
Lists all modules that have been added to a project.
Parameters
Type | Name | Schema |
---|---|---|
Path |
projectId |
integer (int64) |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
< Module > array |
Produces
-
application/json;charset=utf-8
Security
Type | Name | Scopes |
---|---|---|
oauth2 |
prosjektsystem.bruker |
Add a module to a project
POST /modules/by-projectid/{projectId}/by-moduletype/{moduleType}
Description
Add a module to a project. Won’t do anything in case this module type has already been added.
Parameters
Type | Name | Description | Schema |
---|---|---|---|
Path |
moduleType |
The module type. See ModuleType for details. |
enum (CABLESIMULATOR, CALCULATION, ROADLIGHT, LVPOLE, COCO, HUM2, ECO, SHORTCIRCUIT, FORMS, UNKNOWN) |
Path |
projectId |
integer (int64) |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
Produces
-
application/json;charset=utf-8
Security
Type | Name | Scopes |
---|---|---|
oauth2 |
prosjektsystem.bruker |
Get a project module
GET /modules/by-projectid/{projectId}/by-moduletype/{moduleType}
Parameters
Type | Name | Description | Schema |
---|---|---|---|
Path |
moduleType |
The module type. See ModuleType for details. |
enum (CABLESIMULATOR, CALCULATION, ROADLIGHT, LVPOLE, COCO, HUM2, ECO, SHORTCIRCUIT, FORMS, UNKNOWN) |
Path |
projectId |
integer (int64) |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
Produces
-
application/json;charset=utf-8
Security
Type | Name | Scopes |
---|---|---|
oauth2 |
prosjektsystem.bruker |
Remove a module from a project
DELETE /modules/by-projectid/{projectId}/by-moduletype/{moduleType}
Parameters
Type | Name | Description | Schema |
---|---|---|---|
Path |
moduleType |
The module type. See ModuleType for details. |
enum (CABLESIMULATOR, CALCULATION, ROADLIGHT, LVPOLE, COCO, HUM2, ECO, SHORTCIRCUIT, FORMS, UNKNOWN) |
Path |
projectId |
integer (int64) |
Responses
HTTP Code | Description | Schema |
---|---|---|
default |
successful operation |
No Content |
Produces
-
application/json;charset=utf-8
Security
Type | Name | Scopes |
---|---|---|
oauth2 |
prosjektsystem.bruker |
List available module types
GET /modules/types
Description
List all available module types. Will only report back modules that you have access to.
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
< ModuleType > array |
Produces
-
application/json;charset=utf-8
Security
Type | Name | Scopes |
---|---|---|
oauth2 |
prosjektsystem.bruker |
|
oauth2 |
prosjektsystem.bruker |
Project
List all projects
GET /projects
Description
List all projects that you have access to.
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
< Project > array |
Produces
-
application/json;charset=utf-8
Security
Type | Name | Scopes |
---|---|---|
oauth2 |
prosjektsystem.bruker |
List all projects for a company
GET /projects/by-companyid/{companyId}
Description
List all projects for a company. Will only return projects that you have access to.
Parameters
Type | Name | Schema |
---|---|---|
Path |
companyId |
integer (int64) |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
< Project > array |
Produces
-
application/json;charset=utf-8
Security
Type | Name | Scopes |
---|---|---|
oauth2 |
prosjektsystem.bruker |
List projects by company and case reference
GET /projects/by-companyid/{companyId}/by-caseref/{caseRef}
Description
List all projects for a company and specified case reference (norsk: saksnummer). Will only return projects that you have access to.
Parameters
Type | Name | Description | Schema |
---|---|---|---|
Path |
caseRef |
The case reference. |
string |
Path |
companyId |
integer (int64) |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
< Project > array |
Produces
-
application/json;charset=utf-8
Security
Type | Name | Scopes |
---|---|---|
oauth2 |
prosjektsystem.bruker |
List projects by company and number
GET /projects/by-companyid/{companyId}/by-number/{number}
Description
List all projects for a company and specified project number. Will only return projects that you have access to.
Parameters
Type | Name | Schema |
---|---|---|
Path |
companyId |
integer (int64) |
Path |
number |
string |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
< Project > array |
Produces
-
application/json;charset=utf-8
Security
Type | Name | Scopes |
---|---|---|
oauth2 |
prosjektsystem.bruker |
List projects by company and substation reference
GET /projects/by-companyid/{companyId}/by-substationref/{substationRef}
Description
List all projects for a company and specified substation reference (norsk: nettstasjonsnummer). Will only return projects that you have access to.
Parameters
Type | Name | Description | Schema |
---|---|---|---|
Path |
companyId |
integer (int64) |
|
Path |
substationRef |
The substation reference. |
string |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
< Project > array |
Produces
-
application/json;charset=utf-8
Security
Type | Name | Scopes |
---|---|---|
oauth2 |
prosjektsystem.bruker |
Create a project
PUT /projects/by-owner/{owner}
Description
Create a new project. The following properties are required for the Project body: number, name, status and startDate. Providing values for more properties (e.g. endDateEstimate, substationRef, caseRef, location, …) is highly recommended. Modules can be activated immediately via query parameter moduleType. Additional modules can be added later via Add a module to a project. The value of property id in the Project response should be saved for further interaction with the added project.
Parameters
Type | Name | Description | Schema |
---|---|---|---|
Path |
owner |
The username or email of the project owner (e.g. your own username or email). Required since each project must have an owner / responsible. |
string |
Query |
moduleType |
Optional module types that should automatically be activated for the newly created project. See ModuleType for details. |
< enum (CABLESIMULATOR, CALCULATION, ROADLIGHT, LVPOLE, COCO, HUM2, ECO, SHORTCIRCUIT, FORMS, UNKNOWN) > array(multi) |
Body |
body |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
Consumes
-
application/json;charset=utf-8
Produces
-
application/json;charset=utf-8
Security
Type | Name | Scopes |
---|---|---|
oauth2 |
prosjektsystem.bruker |
Search for projects
GET /projects/page
Description
Search for projects, or get all (or filtered) projects. This endpoint supports pagination, and will only return projects that you have access to. Unlike most other endpoints, this endpoint can also list archived projects (depending on parameter archived
).
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Query |
accessScope |
Filter by your own access scope. See AccessScope. |
< enum (IMPLICIT, EXPLICIT) > array(multi) |
|
Query |
accessed |
Limit to projects that have / have not been accessed by you. |
boolean |
|
Query |
archived |
Filter by archived state. Specify |
boolean |
|
Query |
caseRef |
Filter by case references (norsk: saksnummer). |
< string > array(multi) |
|
Query |
companyId |
Filter by company ID. |
< integer (int64) > array(multi) |
|
Query |
count |
The page size / maximum number of projects to return. |
integer (int32) |
|
Query |
first |
Optional offset when using pagination. |
integer (int32) |
|
Query |
fromStartDate |
The oldest accepted start date. May be specified alone or together with toStartDate. |
string (date-time) |
|
Query |
hasLocation |
Limit to projects that have / do not have a geographical location defined. |
boolean |
|
Query |
moduleType |
Filter by activated module types. See ModuleType. |
< enum (CABLESIMULATOR, CALCULATION, ROADLIGHT, LVPOLE, COCO, HUM2, ECO, SHORTCIRCUIT, FORMS, UNKNOWN) > array(multi) |
|
Query |
myPermissionTypes |
Filter by your own permission types. See PermissionType. |
< enum (READ, WRITE) > array(multi) |
|
Query |
myProjectRoles |
Filter by your own project roles. See ProjectRole. |
< enum (READER, WRITER, OWNER) > array(multi) |
|
Query |
number |
Filter by project numbers. |
< string > array(multi) |
|
Query |
owner |
Filter by (personal) owner / responsible username or email. |
< string > array(multi) |
|
Query |
q |
Optional query string, composed of one or multiple search words. |
string |
|
Query |
sort |
Optional sorting instructions. The syntax is |
< string > array(multi) |
|
Query |
status |
Filter by status. See ProjectStatus. |
< enum (NEW, STARTED, ENDED) > array(multi) |
|
Query |
substationRef |
Filter by substation references (norsk: nettstasjonsnummer). |
< string > array(multi) |
|
Query |
toStartDate |
The newest accepted start date. May be specified alone or together with fromStartDate. |
string (date-time) |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
Produces
-
application/json;charset=utf-8
Security
Type | Name | Scopes |
---|---|---|
oauth2 |
prosjektsystem.bruker |
Get property summaries
GET /projects/summary
Description
Get property summaries for all (or filtered) projects. This endpoint provides aggregated information that is useful when searching for projects. Unlike most other endpoints, this endpoint can also include archived projects (depending on parameter archived
).
Parameters
Type | Name | Description | Schema |
---|---|---|---|
Query |
accessScope |
Filter by your own access scope. See AccessScope. |
< enum (IMPLICIT, EXPLICIT) > array(multi) |
Query |
accessed |
Limit to projects that have / have not been accessed by you. |
boolean |
Query |
archived |
Filter by archived state. Specify |
boolean |
Query |
caseRef |
Filter by case references (norsk: saksnummer). |
< string > array(multi) |
Query |
companyId |
Filter by company ID. |
< integer (int64) > array(multi) |
Query |
fromStartDate |
The oldest accepted start date. May be specified alone or together with toStartDate. |
string (date-time) |
Query |
hasLocation |
Limit to projects that have / do not have a geographical location defined. |
boolean |
Query |
moduleType |
Filter by activated module types. See ModuleType. |
< enum (CABLESIMULATOR, CALCULATION, ROADLIGHT, LVPOLE, COCO, HUM2, ECO, SHORTCIRCUIT, FORMS, UNKNOWN) > array(multi) |
Query |
myPermissionTypes |
Filter by your own permission types. See PermissionType. |
< enum (READ, WRITE) > array(multi) |
Query |
myProjectRoles |
Filter by your own project roles. See ProjectRole. |
< enum (READER, WRITER, OWNER) > array(multi) |
Query |
number |
Filter by project numbers. |
< string > array(multi) |
Query |
owner |
Filter by (personal) owner / responsible username or email. |
< string > array(multi) |
Query |
q |
Optional query string, composed of one or multiple search words. |
string |
Query |
status |
Filter by status. See ProjectStatus. |
< enum (NEW, STARTED, ENDED) > array(multi) |
Query |
substationRef |
Filter by substation references (norsk: nettstasjonsnummer). |
< string > array(multi) |
Query |
toStartDate |
The newest accepted start date. May be specified alone or together with fromStartDate. |
string (date-time) |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
Produces
-
application/json;charset=utf-8
Security
Type | Name | Scopes |
---|---|---|
oauth2 |
prosjektsystem.bruker |
Get a project by ID
GET /projects/{projectId}
Parameters
Type | Name | Schema |
---|---|---|
Path |
projectId |
integer (int64) |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
Produces
-
application/json;charset=utf-8
Security
Type | Name | Scopes |
---|---|---|
oauth2 |
prosjektsystem.bruker |
Update a project
PUT /projects/{projectId}
Description
Update project meta-data. Most, but not all properties can be updated.
Parameters
Type | Name | Description | Schema |
---|---|---|---|
Path |
projectId |
integer (int64) |
|
Query |
property |
A list of named properties that should be updated. Other properties will remain untouched. See Project for available properties, but keep in mind that all of them cannot be updated this way. |
< string > array(multi) |
Body |
body |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
Consumes
-
application/json;charset=utf-8
Produces
-
application/json;charset=utf-8
Security
Type | Name | Scopes |
---|---|---|
oauth2 |
prosjektsystem.bruker |
Delete a project
DELETE /projects/{projectId}
Parameters
Type | Name | Schema |
---|---|---|
Path |
projectId |
integer (int64) |
Responses
HTTP Code | Description | Schema |
---|---|---|
default |
successful operation |
No Content |
Security
Type | Name | Scopes |
---|---|---|
oauth2 |
prosjektsystem.bruker |
Move a project to the archive
PUT /projects/{projectId}/archive
Description
Move a project to the archive. An archived project will not show up in normal project lists.
Parameters
Type | Name | Schema |
---|---|---|
Path |
projectId |
integer (int64) |
Responses
HTTP Code | Description | Schema |
---|---|---|
default |
successful operation |
No Content |
Security
Type | Name | Scopes |
---|---|---|
oauth2 |
prosjektsystem.bruker |
Restore a project from the archive
DELETE /projects/{projectId}/archive
Parameters
Type | Name | Schema |
---|---|---|
Path |
projectId |
integer (int64) |
Responses
HTTP Code | Description | Schema |
---|---|---|
default |
successful operation |
No Content |
Security
Type | Name | Scopes |
---|---|---|
oauth2 |
prosjektsystem.bruker |
Change project owner
PUT /projects/{projectId}/owner/{owner}
Parameters
Type | Name | Description | Schema |
---|---|---|---|
Path |
owner |
The username or email of the new project owner / responsible. |
string |
Path |
projectId |
integer (int64) |
Responses
HTTP Code | Description | Schema |
---|---|---|
default |
successful operation |
No Content |
Security
Type | Name | Scopes |
---|---|---|
oauth2 |
prosjektsystem.bruker |
Change project status
PUT /projects/{projectId}/status/{projectStatus}
Parameters
Type | Name | Description | Schema |
---|---|---|---|
Path |
projectId |
integer (int64) |
|
Path |
projectStatus |
The new project status. ProjectStatus for details. |
enum (NEW, STARTED, ENDED) |
Responses
HTTP Code | Description | Schema |
---|---|---|
default |
successful operation |
No Content |
Security
Type | Name | Scopes |
---|---|---|
oauth2 |
prosjektsystem.bruker |
Definitions
AccessScope
Models the scope of a granted access. Valid values are:
-
IMPLICIT Implicit access, e.g. via company or department.
-
EXPLICIT Explicit access, e.g. via ownership.
Type : enum (IMPLICIT, EXPLICIT)
Address
Models a physical address.
Name | Schema |
---|---|
address1 |
string |
address2 |
string |
bnr |
string |
city |
string |
countryCode |
string |
gnr |
string |
municipality |
string |
zipCode |
string |
Comparable
Type : object
Coordinate
Models a coordinate.
Name | Schema |
---|---|
latitude |
number (double) |
longitude |
number (double) |
CoordinateSource
Specifies the source of a coordinate. Valid values are:
-
ROUGH_ADDRESS The coordinate is based on a rough, inexact address.
-
EXACT_ADDRESS The coordinate is based on an exact address.
-
MANUAL The coordinate has been manually modified.
Type : enum (ROUGH_ADDRESS, EXACT_ADDRESS, MANUAL)
Location
Models a location, possibly with both address and coordinate.
Name | Schema |
---|---|
address |
|
coordinate |
|
coordinateSource |
Module
Basic information about a project module.
Name | Description | Schema |
---|---|---|
projectId |
A numeric identifier identifying the project. |
integer (int64) |
type |
Type of module. |
ModuleType
Represents the types of modules / tools the a project can contain. Valid values are:
-
CABLESIMULATOR (norsk: Grøft)
-
CALCULATION (norsk: Kalkyle)
-
ROADLIGHT (norsk: Veilys)
-
LVPOLE (norsk: LS-mast)
-
COCO (norsk: Anleggsbidrag)
-
HUM2 (norsk: Overharmonisk kalk 2)
-
SHORTCIRCUIT (norsk: Ledning)
-
UNKNOWN Not a real module type, but rather a read-only placeholder for unknown or currently unsupported modules.
Type : enum (CABLESIMULATOR, CALCULATION, ROADLIGHT, LVPOLE, COCO, HUM2, ECO, SHORTCIRCUIT, FORMS, UNKNOWN)
MultiPropertySummary
Name | Schema |
---|---|
counter |
|
propertySummaries |
< string, PropertySummary > map |
staticCounter |
Paginated
Name | Schema |
---|---|
count |
integer (int32) |
entities |
< object > array |
first |
integer (int32) |
total |
integer (int32) |
PaginatedProject
Name | Schema |
---|---|
count |
integer (int32) |
entities |
< Project > array |
first |
integer (int32) |
total |
integer (int32) |
PermissionType
Models permission types.
Type : enum (READ, WRITE)
Project
General information about a project.
Name | Description | Schema |
---|---|---|
archived |
Indicates if the project is archived. |
boolean |
caseRef |
A case reference (norsk: saksnummer) for the project. |
string |
companyId |
A numeric identifier for the company of this project. |
integer (int64) |
createdBy |
The user that created the project. |
string |
createdDate |
The timestamp for when the project was created. |
string (date-time) |
description |
A description for the project. |
string |
endDate |
The end date for the project. |
string (date-time) |
endDateEstimate |
The estimated end date for the project. |
string (date-time) |
id |
A unique numeric identifier. |
integer (int64) |
location |
The location (address and/or coordinate) for the project. |
|
meta |
Meta information originating from project modules. |
|
modifiedBy |
The user that modified the project. |
string |
modifiedDate |
The timestamp for when the project was modified. |
string (date-time) |
name |
A name describing the project. |
string |
number |
A number/id identifying the project. Is required to be unique within a company. |
string |
readonly |
Indicates if the project is read only. |
boolean |
startDate |
The start date for the project. |
string (date-time) |
status |
The status for the project. |
|
substationRef |
A substation reference (norsk: nettstasjonsnummer) for the project. |
string |
ProjectMeta
Read-only project meta data, originating from project modules.
Name | Description | Schema |
---|---|---|
catalogRevisionName |
The name of the revision (norsk: kostnadskatalog revisjon) used in the calculation module. |
string |
totalCost |
The total cost from the calculation module (norsk: kalkylesum). |
number (double) |
ProjectRole
Models the role of a user within a project. Valid values are:
-
READER (norsk: Har lesetilgang til prosjektet)
-
WRITER (norsk: Har skrivetilgang til prosjektet)
-
OWNER (norsk: Eier av prosjektet)
Type : enum (READER, WRITER, OWNER)
ProjectStatus
Models the high level status of a project. Valid values are:
-
NEW (norsk: Ikke påbegynt)
-
STARTED (norsk: Påbegynt)
-
ENDED (norsk: Avsluttet)
Type : enum (NEW, STARTED, ENDED)
PropertySummary
Name | Schema |
---|---|
displayName |
string |
name |
string |
op |
enum (OR, AND) |
range |
|
valueSummaries |
< PropertyValueSummary > array |
PropertyValueSummary
Name | Schema |
---|---|
counter |
|
displayValue |
string |
value |
object |
QuantityCounter
Name | Schema |
---|---|
count |
integer (int64) |
quantity |
integer (int64) |
Range
Name | Schema |
---|---|
displayName |
string |
from |
|
to |
RangeObject
Name | Schema |
---|---|
displayName |
string |
from |
object |
to |
object |
Security
oauth2-password
A flow where an end user is required. Endpoints using this flow can provide personal customization and access to personal information.
Type : oauth2
Flow : password
Token URL : https://www.ren.no/auth/realms/www.ren.no/protocol/openid-connect/token
Name | Description |
---|---|
prosjektsystem.bruker |
Implies that role 'prosjektsystem.bruker' is required. |
oauth2-client
A flow where an end user is not involved. Endpoints using this flow will support full automation without any human intervention, but on the other hand cannot provide personal customization or access to personal information.
Type : oauth2
Flow : application
Token URL : https://www.ren.no/auth/realms/www.ren.no/protocol/openid-connect/token
Name | Description |
---|---|
prosjektsystem.bruker |
Implies that role 'prosjektsystem.bruker' is required. |