-
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.
- Loading branch information
1 parent
7ece6a2
commit c96838f
Showing
5 changed files
with
569 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
{ | ||
"id": "inkoop", | ||
"type": "table", | ||
"version": "1.0.0", | ||
"titel": "inkoop", | ||
"description": "Deze end-point bevat de inkoop gegevens over transport- of werkmaterieel", | ||
"schema": { | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"type": "object", | ||
"additionalProperties": false, | ||
"identifier": "id", | ||
"required": [ | ||
"id", | ||
"schema" | ||
], | ||
"display": "id", | ||
"properties": { | ||
"id": { | ||
"title": "id", | ||
"type": "string", | ||
"description": "Id van de bestelling" | ||
}, | ||
"wagenparkMaterieel": { | ||
"title": "Materieel ID", | ||
"type": "string", | ||
"relation": "wagenpark:materieel", | ||
"description": "Verwijzing naar het nieuwe object dat voor het te leveren of geleverde voertuig is gecreëerd in de Ultimo-objectendatabase" | ||
}, | ||
"schema": { | ||
"$ref": "https://schemas.data.amsterdam.nl/schema@v2#/definitions/schema" | ||
}, | ||
"omschrijvingMaterieel": { | ||
"title": "Omschrijving materieel", | ||
"type": "string", | ||
"description": "Omschrijving van het bestelde materieel" | ||
}, | ||
"afleverdatum": { | ||
"title": "Afleverdatum", | ||
"type": "string", | ||
"format": "date", | ||
"description": "Datum waarop de betreffende bestelling door de leverancier is afgeleverd aan de gemeente" | ||
}, | ||
"besteldatum": { | ||
"title": "Besteldatum", | ||
"type": "string", | ||
"format": "date", | ||
"description": "Datum waarop de betreffende bestelling per e-mail vanuit Ultimo akkoord is gegeven aan de leverancier" | ||
}, | ||
"typeVervanging": { | ||
"title": "Type vervanging", | ||
"type": "string", | ||
"description": "Keuze type vervanging zoals opgegeven op het betreffende bestelformulier van de bronapplicatie. De mogelijke waardes: 0 = vervangen , 1 = nieuw" | ||
}, | ||
"typeBestelling": { | ||
"title": "Type bestelling", | ||
"type": "string", | ||
"description": "Keuze type bestelling zoals opgegeven op het betreffende bestelformulier in de bronapplicatie. De mogelijke waardes: 0 = eigendom, 1 = lease, 2 = huur" | ||
}, | ||
"status": { | ||
"title": "Status", | ||
"type": "string", | ||
"enum": [ | ||
"-1", | ||
"0", | ||
"1", | ||
"2", | ||
"4", | ||
"8", | ||
"16", | ||
"32", | ||
"64" | ||
], | ||
"description": "Bestelstatus, waarbij de volgende opties mogelijk zijn: -1=Trash, 0 = Aanvraag, 1 = Calculeren, 2 = Accorderen budgethouder aanvrager, 4 = Accorderen budgethouder functioneel beheer, 8 = Bestelling plaatsen, 16 = Bestelling is geplaatst, 32 = De bestelling is verkregen, 64 = De bestelling is geannuleerd" | ||
}, | ||
"totaleAanschafwaarde": { | ||
"title": "Totale aanschafwaarde", | ||
"type":"number", | ||
"multipleOf": 0.01, | ||
"description": "Totale aanschafwaarde in euro's exclusief btw, inclusief standaardaccessoires, ritregistratie, tankring en bestickering volgens huisstijl" | ||
}, | ||
"materieelNieuw": { | ||
"title": "Materieel nieuw", | ||
"type": "string", | ||
"description": "Verwijzing naar het object dat door middel van de bestelling vervangen zal worden" | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.