-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rebuilding site Wed Jan 8 14:49:14 CET 2025
- Loading branch information
Jenkins CI server
committed
Jan 8, 2025
1 parent
8e615cf
commit 01b9c63
Showing
86 changed files
with
2,279 additions
and
2,108 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,171 @@ | ||
{ | ||
"openapi": "3.0.3", | ||
"info": { | ||
"title": "KS FIKS: Kompetent synkronisering service", | ||
"description": "Kompetent service", | ||
"contact": { | ||
"name": "Fiks brukerstøtte", | ||
"url": "https://www.ks.no/fagomrader/digitalisering/utviklingsprosjekter", | ||
"email": "fiks-utvikling@ks.no" | ||
}, | ||
"version": "v1" | ||
}, | ||
"servers": [ | ||
{ | ||
"url": "https://api.fiks.ks.no", | ||
"description": "KS Fiks API host" | ||
}, | ||
{ | ||
"url": "https://api.test.fiks.ks.no", | ||
"description": "KS Fiks TEST API host" | ||
} | ||
], | ||
"tags": [ | ||
{ | ||
"name": "kompetent", | ||
"description": "API for KS kompetent synkronisering" | ||
} | ||
], | ||
"paths": { | ||
"/kompetent/api/v1/integrasjon": { | ||
"get": { | ||
"tags": [ | ||
"kompetent" | ||
], | ||
"description": "Standard service informasjon som kun skal være tilgjengelig for integrasjoner", | ||
"operationId": "integrasjon", | ||
"responses": { | ||
"200": { | ||
"description": "Informasjon om tjeneste", | ||
"content": { | ||
"application/json": { | ||
"schema": { | ||
"$ref": "#/components/schemas/ServiceInformation" | ||
} | ||
} | ||
} | ||
}, | ||
"401": { | ||
"description": "Ikke autorisert", | ||
"content": { | ||
"application/json": { | ||
"schema": { | ||
"$ref": "https://developers.fiks.ks.no/api/fiks-common.json#/components/schemas/ErrorMessage" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"/kompetent/api/v1/integrasjonPerson": { | ||
"get": { | ||
"tags": [ | ||
"kompetent" | ||
], | ||
"description": "Standard service informasjon som kun skal være tilgjengelig for integrasjon som representerer en person", | ||
"operationId": "integrasjonPerson", | ||
"responses": { | ||
"200": { | ||
"description": "Informasjon om tjeneste", | ||
"content": { | ||
"application/json": { | ||
"schema": { | ||
"$ref": "#/components/schemas/ServiceInformation" | ||
} | ||
} | ||
} | ||
}, | ||
"401": { | ||
"description": "Ikke autorisert", | ||
"content": { | ||
"application/json": { | ||
"schema": { | ||
"$ref": "https://developers.fiks.ks.no/api/fiks-common.json#/components/schemas/ErrorMessage" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"/kompetent/api/v1/person": { | ||
"get": { | ||
"tags": [ | ||
"kompetent" | ||
], | ||
"description": "Standard service informasjon som kun skal være tilgjengelig for personer", | ||
"operationId": "person", | ||
"responses": { | ||
"200": { | ||
"description": "Informasjon om tjeneste", | ||
"content": { | ||
"application/json": { | ||
"schema": { | ||
"$ref": "#/components/schemas/ServiceInformation" | ||
} | ||
} | ||
} | ||
}, | ||
"401": { | ||
"description": "Ikke autorisert", | ||
"content": { | ||
"application/json": { | ||
"schema": { | ||
"$ref": "https://developers.fiks.ks.no/api/fiks-common.json#/components/schemas/ErrorMessage" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"/kompetent/api/v1": { | ||
"get": { | ||
"tags": [ | ||
"kompetent" | ||
], | ||
"description": "Standard service informasjon som skal være tilgjengelig for ALLE med gyldig token", | ||
"operationId": "standard", | ||
"responses": { | ||
"200": { | ||
"description": "Informasjon om tjeneste", | ||
"content": { | ||
"application/json": { | ||
"schema": { | ||
"$ref": "#/components/schemas/ServiceInformation" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"components": { | ||
"schemas": { | ||
"ServiceInformation": { | ||
"type": "object", | ||
"properties": { | ||
"apiName": { | ||
"type": "string" | ||
}, | ||
"apiVersion": { | ||
"type": "string" | ||
}, | ||
"authorizationDescription": { | ||
"type": "string", | ||
"enum": [ | ||
"ALLE", | ||
"INTEGRASJON", | ||
"PERSON", | ||
"PERSON_INTEGRASJON", | ||
"ORG_ADMIN" | ||
] | ||
} | ||
}, | ||
"required": ["apiName", "apiVersion", "authorizationDescription"] | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.