-
Notifications
You must be signed in to change notification settings - Fork 3
/
openapi.yaml
44 lines (43 loc) · 1.11 KB
/
openapi.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
openapi: 3.0.2
info:
title: AI Project Service
description: desc
version: '1.0'
termsOfService: 'https://fellesdatakatalog.digdir.no/about'
contact:
name: Digitaliseringsdirektoratet
url: 'https://fellesdatakatalog.digdir.no'
email: [email protected]
license:
name: License of API
url: 'http://data.norge.no/nlod/no/2.0'
externalDocs:
description: Dokumentasjon på Informasjonsforvaltning GitHub
url: https://informasjonsforvaltning.github.io/
tags:
- name: ai-project-service
description: AI Project Service
servers:
- url: 'https://ai-project.fellesdatakatalog.digdir.no'
paths:
/projects:
get:
summary: Read data from CSV file
responses:
'200':
description: Returns the data from the CSV file as a JSON object
content:
application/json:
schema:
$ref: '#/components/schemas/projects'
components:
schemas:
Projects:
type: object
properties:
id:
type: integer
name:
type: string
value:
type: string