INTERLIS 2.3; !!======================================================================================== !! Copyright (c) 2024, GIS-Fachstelle des Amtes für Geoinformation Kanton Basel-Landschaft !! All rights reserved. !! !! Datum | Version | Autor/in | Aenderung !!---------------------------------------------------------------------------------------- !! 16.02.2024 | 1.0 | OPENGIS.ch | Ersterstellung !! 07.03.2024 | 1.0 | eb | Bearbeitung eb gem. Sprint 03/2024 !!---------------------------------------------------------------------------------------- !!@ technicalContact="mailto:support.gis@bl.ch" !!@ furtherInformation="https://geo.bl.ch" !!======================================================================================== MODEL ch_bl_afk_augusta_raurica_kataloge_v1_0 (de) AT "http://models.geo.bl.ch/AFK/" VERSION "2024-02-16" = IMPORTS CatalogueObjects_V1; IMPORTS UNQUALIFIED INTERLIS; TOPIC codelisten = CLASS epoche_item EXTENDS CatalogueObjects_V1.Catalogues.Item = Code : MANDATORY TEXT*50; Text: MANDATORY TEXT*200; END epoche_item; STRUCTURE epoche_ref EXTENDS CatalogueObjects_V1.Catalogues.CatalogueReference = Reference (EXTENDED) : REFERENCE TO (EXTERNAL) epoche_item; END epoche_ref; CLASS herkunft_item EXTENDS CatalogueObjects_V1.Catalogues.Item = Code : MANDATORY TEXT*10; Text: MANDATORY TEXT*200; END herkunft_item; STRUCTURE herkunft_ref EXTENDS CatalogueObjects_V1.Catalogues.CatalogueReference = Reference (EXTENDED) : REFERENCE TO (EXTERNAL) herkunft_item; END herkunft_ref; CLASS grabung_typ_item EXTENDS CatalogueObjects_V1.Catalogues.Item = Code : MANDATORY TEXT*10; Text: MANDATORY TEXT*200; END grabung_typ_item; STRUCTURE grabung_typ_ref EXTENDS CatalogueObjects_V1.Catalogues.CatalogueReference = Reference (EXTENDED) : REFERENCE TO (EXTERNAL) grabung_typ_item; END grabung_typ_ref; END codelisten; END ch_bl_afk_augusta_raurica_kataloge_v1_0.