-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
openbaar subsidieregister WOO (#947)
- Loading branch information
1 parent
03bbdf8
commit 66fc6fc
Showing
1 changed file
with
113 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
{ | ||
"type": "dataset", | ||
"id": "subsidies", | ||
"title": "Subsidies", | ||
"description": "Subsidies die de Gemeente Amsterdam heeft verstrekt.", | ||
"license": "public", | ||
"status": "beschikbaar", | ||
"owner": "Gemeente Amsterdam, Directie Subsidies", | ||
"auth": "OPENBAAR", | ||
"authorizationGrantor": "OIS", | ||
"creator": "Subsidies SISA", | ||
"publisher": "Datateam MOSS+", | ||
"theme": [ | ||
"Subsidies" | ||
], | ||
"keywords": [ | ||
"Openbaar", | ||
"Subsidies", | ||
"Subsidieregister", | ||
"WOO", | ||
"Wet Open Overheid" | ||
], | ||
"tables": [ | ||
{ | ||
"id": "openbaarSubsidieregister", | ||
"title": "openbaarSubsidieregister", | ||
"type": "table", | ||
"version": "1.0.0", | ||
"schema": { | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"type": "object", | ||
"additionalProperties": false, | ||
"required": [ | ||
"schema", | ||
"id" | ||
], | ||
"display": "naam", | ||
"properties": { | ||
"schema": { | ||
"$ref": "https://schemas.data.amsterdam.nl/[email protected]#/definitions/schema" | ||
}, | ||
"id": { | ||
"type": "integer", | ||
"description": "Unieke aanduiding van de subsidieverlening." | ||
}, | ||
"naam": { | ||
"type": "string", | ||
"description": "De naam van de subsidie" | ||
}, | ||
"project": { | ||
"type": "string", | ||
"description": "Het project dat verband houdt met de subsidie" | ||
}, | ||
"ontvanger": { | ||
"type": "string", | ||
"description": "De ontvanger van de subsidie" | ||
}, | ||
"regeling": { | ||
"type": "string", | ||
"description": "De regeling waarop de subsidie wordt verstrekt" | ||
}, | ||
"directie": { | ||
"type": "string", | ||
"description": "De afdeling verantwoordelijk voor de subsidie" | ||
}, | ||
"organisatie": { | ||
"type": "string", | ||
"description": "De organisatie die de subsidie verstrekt" | ||
}, | ||
"thema": { | ||
"type": "string", | ||
"description": "Het thema van de subsidie" | ||
}, | ||
"jaar": { | ||
"type": "number", | ||
"description": "Het jaar waarin de subsidie is verleend" | ||
}, | ||
"periodiciteit": { | ||
"type": "string", | ||
"description": "De periodiciteit van de subsidie" | ||
}, | ||
"vaststellingsdatum": { | ||
"type": "string", | ||
"format": "date", | ||
"description": "De datum waarop de subsidie is vastgesteld" | ||
}, | ||
"verleningsdatum": { | ||
"type": "string", | ||
"format": "date", | ||
"description": "De datum waarop de subsidie is verleend" | ||
}, | ||
"publicatiedatum": { | ||
"type": "string", | ||
"format": "date", | ||
"description": "De datum waarop de subsidie is gepubliceerd" | ||
}, | ||
"aangevraagd": { | ||
"type": "number", | ||
"description": "Het bedrag aan gevraagde subsidie" | ||
}, | ||
"verleend": { | ||
"type": "number", | ||
"description": "Het bedrag aan verleende subsidie" | ||
}, | ||
"vastgesteld": { | ||
"type": "number", | ||
"description": "Het bedrag aan vastgestelde subsidie" | ||
} | ||
} | ||
} | ||
} | ||
] | ||
} |