From ffe1cc635b346d26517b42d6ab56132550bd3b0e Mon Sep 17 00:00:00 2001 From: Alberto Abella Date: Thu, 5 Oct 2023 18:37:15 +0200 Subject: [PATCH] updated CheckpointFacilityType/doc/spec_IT.md --- CheckpointFacilityType/doc/spec_IT.md | 159 ++++++++++++++++++++++++++ 1 file changed, 159 insertions(+) create mode 100644 CheckpointFacilityType/doc/spec_IT.md diff --git a/CheckpointFacilityType/doc/spec_IT.md b/CheckpointFacilityType/doc/spec_IT.md new file mode 100644 index 0000000..f88d5c0 --- /dev/null +++ b/CheckpointFacilityType/doc/spec_IT.md @@ -0,0 +1,159 @@ + +[![Smart Data Models](https://smartdatamodels.org/wp-content/uploads/2022/01/SmartDataModels_logo.png "Logo")](https://smartdatamodels.org) + Entità: CheckpointFacilityType +============================== + + [Licenza aperta](https://github.com/smart-data-models//dataModel.ACRIS/blob/master/CheckpointFacilityType/LICENSE.md) + [documento generato automaticamente](https://docs.google.com/presentation/d/e/2PACX-1vTs-Ng5dIAwkg91oTTUdt8ua7woBXhPnwavZ0FxgR8BsAI_Ek3C5q97Nd94HS8KhP-r_quD4H0fgyt3/pub?start=false&loop=false&delayms=3000#slide=id.gb715ace035_0_60) + + + Descrizione globale: **Proprietà. Informazioni che descrivono la classificazione di un punto di controllo in un aeroporto. I valori sono: Controllo di sicurezza, Dogana. + versione: 0.0.1 + + + + ## Elenco delle proprietà + + [*] Se non c'è un tipo in un attributo è perché potrebbe avere diversi tipi o diversi formati/modelli. +- `Code[string]`: Codice univoco per il tipo di struttura del punto di controllo. - `Description[string]`: Descrizione del tipo di struttura del checkpoint. - `id[*]`: Identificatore univoco dell'entità - `type[string]`: Deve essere uguale a CheckpointFacilityType. + + Proprietà richieste +- `id` - `type` + + Questo modello di dati è una mappatura del Passenger Wait Times Standard v1.6.0 dell'Airports Council International (ACI) ACRIS data interface standard. Disponibile su https://acris.aero/static/documents/waittimes/ACI-Wait-Times-Standard-API-v1.6.0.12b34cd0213e.pdf + + + ## Modello di dati descrizione delle proprietà + Ordinati in ordine alfabetico (clicca per i dettagli) + + +
full yaml details + ```yaml +CheckpointFacilityType: + description: 'Property. Information that describes the classification for a Checkpoint in an Airport. Values are: Security Screening, Customs.' + properties: + Code: + description: Unique code for the Checkpoint Facility Type. + type: string + x-ngsi: + type: Property + Description: + description: Description of the Checkpoint Facility Type. + type: string + x-ngsi: + type: Property + id: + anyOf: + - description: Identifier format of any NGSI entity + maxLength: 256 + minLength: 1 + pattern: ^[\w\-\.\{\}\$\+\*\[\]`|~^@!,:\\]+$ + type: string + x-ngsi: + type: Property + - description: Identifier format of any NGSI entity + format: uri + type: string + x-ngsi: + type: Property + description: Unique identifier of the entity + x-ngsi: + type: Property + type: + description: It must be equal to CheckpointFacilityType. + enum: + - CheckpointFacilityType + type: string + x-ngsi: + type: Property + required: + - id + - type + type: object + x-derived-from: https://acris.aero/static/documents/waittimes/ACI-Wait-Times-API-Specification-v1.6.0.1c4ec122da9a.yaml + x-disclaimer: 'Redistribution and use in source and binary forms, with or without modification, are permitted provided that the license conditions are met. Copyleft (c) 2022 Contributors to Smart Data Models Program' + x-license-url: https://github.com/smart-data-models/dataModel.ACRIS/blob/master/CheckpointFacilityType/LICENSE.md + x-model-schema: https://smart-data-models.github.io/dataModel.ACRIS/CheckpointFacilityType/schema.json + x-model-tags: ACRIS + x-version: 0.0.1 +``` +
+ + + + + ## Esempi di payload + #### CheckpointFacilityType Valori chiave NGSI-v2 Esempio + Ecco un esempio di CheckpointFacilityType in formato JSON-LD come valori-chiave. Questo è compatibile con NGSI-v2 quando si usa `options=keyValues` e restituisce i dati di contesto di una singola entità. +
show/hide example + ```json + { + "id": "urn:ngsi-ld:CheckpointFacilityType:id:DBOZ:17389826", + "type": "CheckpointFacilityType", + "Code": "code3", + "Description": "" +} +``` +
+ #### CheckpointFacilityType NGSI-v2 normalizzato Esempio + Ecco un esempio di CheckpointFacilityType in formato JSON-LD normalizzato. Questo è compatibile con NGSI-v2 quando non si utilizzano opzioni e restituisce i dati di contesto di una singola entità. +
show/hide example + ```json + { + "id": "urn:ngsi-ld:CheckpointFacilityType:id:UCGJ:56843368", + "type": "CheckpointFacilityType", + "Code": { + "type": "Text", + "value": "code3" + }, + "Description": { + "type": "Text", + "value": "" + } +} +``` +
+ #### CheckpointFacilityType Valori chiave NGSI-LD Esempio + Ecco un esempio di CheckpointFacilityType in formato JSON-LD come valori-chiave. Questo è compatibile con NGSI-LD quando si usa `options=keyValues` e restituisce i dati di contesto di una singola entità. +
show/hide example + ```json + { + "id": "urn:ngsi-ld:CheckpointFacilityType:id:DBOZ:17389826", + "type": "CheckpointFacilityType", + "Code": "code3", + "Description": "", + "@context": [ + "https://raw.githubusercontent.com/smart-data-models/dataModel.ACRIS/master/context.jsonld" + ] +} +``` +
+ #### CheckpointFacilityType NGSI-LD normalizzato Esempio + Ecco un esempio di CheckpointFacilityType in formato JSON-LD normalizzato. Questo è compatibile con NGSI-LD quando non si utilizzano opzioni e restituisce i dati di contesto di una singola entità. +
show/hide example + ```json + { + "id": "urn:ngsi-ld:CheckpointFacilityType:id:UCGJ:56843368", + "type": "CheckpointFacilityType", + "Code": { + "type": "Property", + "value": "code3" + }, + "Description": { + "type": "Property", + "value": "" + }, + "@context": [ + "https://raw.githubusercontent.com/smart-data-models/dataModel.ACRIS/master/context.jsonld" + ] +} +``` +
+ + + + Vedere [FAQ 10](https://smartdatamodels.org/index.php/faqs/) per ottenere una risposta su come gestire le unità di grandezza. + + +--- + [Smart Data Models](https://smartdatamodels.org) +++ [Contribution Manual](https://bit.ly/contribution_manual) +++ [About](https://bit.ly/Introduction_SDM)