├── .github ├── dependabot.yml └── workflows │ ├── generate_changelog.yml │ ├── publish_package.yml │ ├── release.yml │ └── test-python.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── __tests__ ├── __int__.py ├── functional │ └── Test_FDP-Health-RI_v2.ipynb ├── test_data │ ├── agent.ttl │ ├── agent.ttl.license │ ├── date_time_description.json │ ├── date_time_description.json.license │ ├── date_time_description.ttl │ ├── date_time_description.ttl.license │ ├── example_26.ttl │ ├── example_26.ttl.license │ ├── general_date_time_descr_example.ttl │ ├── general_date_time_descr_example.ttl.license │ ├── general_date_time_description.json │ ├── general_date_time_description.json.license │ ├── period_of_time_ex23.ttl │ ├── period_of_time_ex23.ttl.license │ ├── period_of_time_ex24.ttl │ ├── period_of_time_ex24.ttl.license │ ├── spatial_ex29.ttl │ ├── spatial_ex29.ttl.license │ ├── time_position_nominal.json │ ├── time_position_nominal.json.license │ ├── time_position_numeric.json │ ├── time_position_numeric.json.license │ ├── vCard.ttl │ ├── vCard.ttl.license │ ├── vCard_as_a_node.ttl │ └── vCard_as_a_node.ttl.license ├── test_dcat_models.py ├── test_hri_models.py ├── test_policy.py ├── test_prov.py ├── test_rdf_model.py ├── test_spatial.py ├── test_time_models.py ├── test_utils.py └── test_vcard.py ├── docs ├── Defining_extending_a_model.md ├── Documentation_DCAT.ipynb ├── Documentation_Health-RI_Core.ipynb ├── Intro.md ├── Models.md ├── Push_to_FDP-Health-RI_v2.ipynb ├── Usage_example_FDP.ipynb ├── Usage_example_FDP_HealthRI_core.ipynb ├── Usage_example_GDI.ipynb ├── Usage_example_HealthRI_core.ipynb ├── Usage_example_time_models.ipynb ├── Usage_example_with_test_data.ipynb ├── example_data.csv ├── example_data_fdp.csv └── imgs │ ├── datasets_fdp.png │ ├── ds_in_catalog.png │ ├── fdp_catalog.png │ ├── minimal_catalog.png │ ├── minimal_dataset.png │ └── wizard.png ├── models ├── dcat │ ├── Attribution.json │ ├── Attribution.yaml │ ├── DCATCatalog.json │ ├── DCATCatalog.json.license │ ├── DCATCatalog.yaml │ ├── DCATCatalog.yaml.license │ ├── DCATDataService.json │ ├── DCATDataService.json.license │ ├── DCATDataService.yaml │ ├── DCATDataService.yaml.license │ ├── DCATDataset.json │ ├── DCATDataset.json.license │ ├── DCATDataset.yaml │ ├── DCATDataset.yaml.license │ ├── DCATDatasetSeries.json │ ├── DCATDatasetSeries.json.license │ ├── DCATDatasetSeries.yaml │ ├── DCATDatasetSeries.yaml.license │ ├── DCATDistribution.json │ ├── DCATDistribution.json.license │ ├── DCATDistribution.yaml │ ├── DCATDistribution.yaml.license │ ├── DCATResource.json │ ├── DCATResource.json.license │ ├── DCATResource.yaml │ ├── DCATResource.yaml.license │ ├── Relationship.json │ ├── Relationship.yaml │ ├── dcat_catalog.png │ ├── dcat_catalog.png.license │ ├── dcat_data_service.png │ ├── dcat_data_service.png.license │ ├── dcat_dataset.png │ ├── dcat_dataset.png.license │ ├── dcat_dataset_series.png │ ├── dcat_dataset_series.png.license │ ├── dcat_distribution.png │ ├── dcat_distribution.png.license │ ├── dcat_resource.png │ └── dcat_resource.png.license ├── foaf │ ├── Agent.json │ ├── Agent.json.license │ ├── Agent.yaml │ ├── Agent.yaml.license │ ├── Project.json │ ├── Project.json.license │ ├── Project.yaml │ └── Project.yaml.license ├── geo │ ├── Geometry.json │ ├── Geometry.json.license │ ├── Geometry.yaml │ ├── Geometry.yaml.license │ ├── Location.json │ ├── Location.json.license │ ├── Location.yaml │ └── Location.yaml.license ├── hri_dcat │ ├── HRIAgent.json │ ├── HRIAgent.yaml │ ├── HRICatalog.json │ ├── HRICatalog.json.license │ ├── HRICatalog.yaml │ ├── HRICatalog.yaml.license │ ├── HRIDataService.json │ ├── HRIDataService.json.license │ ├── HRIDataService.yaml │ ├── HRIDataService.yaml.license │ ├── HRIDataset.json │ ├── HRIDataset.json.license │ ├── HRIDataset.yaml │ ├── HRIDataset.yaml.license │ ├── HRIDatasetSeries.json │ ├── HRIDatasetSeries.yaml │ ├── HRIDistribution.json │ ├── HRIDistribution.json.license │ ├── HRIDistribution.yaml │ ├── HRIDistribution.yaml.license │ ├── HRIProject.json │ ├── HRIProject.yaml │ ├── HRIStudy.json │ ├── HRIStudy.yaml │ ├── HRIVCard.json │ ├── HRIVCard.yaml │ ├── hri_catalog.png │ ├── hri_catalog.png.license │ ├── hri_dataservice.png │ ├── hri_dataservice.png.license │ ├── hri_dataset.png │ ├── hri_dataset.png.license │ ├── hri_distribution.png │ └── hri_distribution.png.license ├── odrl │ ├── ODRLPolicy.json │ ├── ODRLPolicy.json.license │ ├── ODRLPolicy.yaml │ └── ODRLPolicy.yaml.license ├── prov │ ├── Activity.json │ ├── Activity.json.license │ ├── Activity.yaml │ ├── Activity.yaml.license │ ├── Association.json │ ├── Association.json.license │ ├── Association.yaml │ ├── Association.yaml.license │ ├── End.json │ ├── End.json.license │ ├── End.yaml │ ├── End.yaml.license │ ├── EntityInfluence.json │ ├── EntityInfluence.json.license │ ├── EntityInfluence.yaml │ ├── EntityInfluence.yaml.license │ ├── InstantaneousEvent.json │ ├── InstantaneousEvent.json.license │ ├── InstantaneousEvent.yaml │ ├── InstantaneousEvent.yaml.license │ ├── Start.json │ ├── Start.json.license │ ├── Start.yaml │ └── Start.yaml.license ├── spdx │ ├── Checksum.json │ ├── Checksum.json.license │ ├── Checksum.yaml │ └── Checksum.yaml.license ├── time │ ├── DateTimeDescription.json │ ├── DateTimeDescription.json.license │ ├── DateTimeDescription.yaml │ ├── DateTimeDescription.yaml.license │ ├── GeneralDateTimeDescription.json │ ├── GeneralDateTimeDescription.json.license │ ├── GeneralDateTimeDescription.yaml │ ├── GeneralDateTimeDescription.yaml.license │ ├── PeriodOfTime.json │ ├── PeriodOfTime.json.license │ ├── PeriodOfTime.yaml │ ├── PeriodOfTime.yaml.license │ ├── TimeInstant.json │ ├── TimeInstant.json.license │ ├── TimeInstant.yaml │ ├── TimeInstant.yaml.license │ ├── TimePosition.json │ ├── TimePosition.json.license │ ├── TimePosition.yaml │ ├── TimePosition.yaml.license │ ├── period_of_time.png │ ├── period_of_time.png.license │ ├── time_instant.png │ └── time_instant.png.license └── vcard │ ├── VCard.json │ ├── VCard.json.license │ ├── VCard.yaml │ └── VCard.yaml.license ├── pyproject.toml ├── sempyro ├── __init__.py ├── adms │ ├── __init__.py │ └── identifier.py ├── dcat │ ├── __init__.py │ ├── data_service.py │ ├── dataset_series.py │ ├── dcat_attribution.py │ ├── dcat_catalog.py │ ├── dcat_catalog_record.py │ ├── dcat_dataset.py │ ├── dcat_distribution.py │ ├── dcat_relationship.py │ └── dcat_resource.py ├── dqv │ ├── __init__.py │ └── quality_certificate.py ├── foaf │ ├── __init__.py │ ├── agent.py │ └── project.py ├── geo │ ├── __init__.py │ └── spatial.py ├── hri_dcat │ ├── __init__.py │ ├── hri_agent.py │ ├── hri_catalog.py │ ├── hri_data_service.py │ ├── hri_dataset.py │ ├── hri_dataset_series.py │ ├── hri_distribution.py │ ├── hri_vcard.py │ └── vocabularies.py ├── namespaces │ ├── ADMS.py │ ├── DCATAPv3.py │ ├── DCATv3.py │ ├── DISCO.py │ ├── DPV.py │ ├── DQV.py │ ├── FREQ.py │ ├── GEOSPARQL.py │ ├── GREG.py │ ├── HEALTHDCATAP.py │ ├── LOCN.py │ ├── OA.py │ └── __init__.py ├── odrl │ ├── __init__.py │ └── policy.py ├── prov │ ├── __init__.py │ └── prov_classes.py ├── rdf_model.py ├── spdx │ ├── __init__.py │ └── spdx_classes.py ├── time │ ├── __init__.py │ └── dcat_time_models.py ├── utils │ ├── __init__.py │ ├── constants.py │ └── validator_functions.py └── vcard │ ├── __init__.py │ └── vcard.py ├── serialize_models.py └── sonar-project.properties /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/generate_changelog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/.github/workflows/generate_changelog.yml -------------------------------------------------------------------------------- /.github/workflows/publish_package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/.github/workflows/publish_package.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test-python.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/.github/workflows/test-python.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/__int__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /__tests__/functional/Test_FDP-Health-RI_v2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/__tests__/functional/Test_FDP-Health-RI_v2.ipynb -------------------------------------------------------------------------------- /__tests__/test_data/agent.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/__tests__/test_data/agent.ttl -------------------------------------------------------------------------------- /__tests__/test_data/agent.ttl.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/__tests__/test_data/agent.ttl.license -------------------------------------------------------------------------------- /__tests__/test_data/date_time_description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/__tests__/test_data/date_time_description.json -------------------------------------------------------------------------------- /__tests__/test_data/date_time_description.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/__tests__/test_data/date_time_description.json.license -------------------------------------------------------------------------------- /__tests__/test_data/date_time_description.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/__tests__/test_data/date_time_description.ttl -------------------------------------------------------------------------------- /__tests__/test_data/date_time_description.ttl.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/__tests__/test_data/date_time_description.ttl.license -------------------------------------------------------------------------------- /__tests__/test_data/example_26.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/__tests__/test_data/example_26.ttl -------------------------------------------------------------------------------- /__tests__/test_data/example_26.ttl.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/__tests__/test_data/example_26.ttl.license -------------------------------------------------------------------------------- /__tests__/test_data/general_date_time_descr_example.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/__tests__/test_data/general_date_time_descr_example.ttl -------------------------------------------------------------------------------- /__tests__/test_data/general_date_time_descr_example.ttl.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/__tests__/test_data/general_date_time_descr_example.ttl.license -------------------------------------------------------------------------------- /__tests__/test_data/general_date_time_description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/__tests__/test_data/general_date_time_description.json -------------------------------------------------------------------------------- /__tests__/test_data/general_date_time_description.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/__tests__/test_data/general_date_time_description.json.license -------------------------------------------------------------------------------- /__tests__/test_data/period_of_time_ex23.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/__tests__/test_data/period_of_time_ex23.ttl -------------------------------------------------------------------------------- /__tests__/test_data/period_of_time_ex23.ttl.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/__tests__/test_data/period_of_time_ex23.ttl.license -------------------------------------------------------------------------------- /__tests__/test_data/period_of_time_ex24.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/__tests__/test_data/period_of_time_ex24.ttl -------------------------------------------------------------------------------- /__tests__/test_data/period_of_time_ex24.ttl.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/__tests__/test_data/period_of_time_ex24.ttl.license -------------------------------------------------------------------------------- /__tests__/test_data/spatial_ex29.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/__tests__/test_data/spatial_ex29.ttl -------------------------------------------------------------------------------- /__tests__/test_data/spatial_ex29.ttl.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/__tests__/test_data/spatial_ex29.ttl.license -------------------------------------------------------------------------------- /__tests__/test_data/time_position_nominal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/__tests__/test_data/time_position_nominal.json -------------------------------------------------------------------------------- /__tests__/test_data/time_position_nominal.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/__tests__/test_data/time_position_nominal.json.license -------------------------------------------------------------------------------- /__tests__/test_data/time_position_numeric.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/__tests__/test_data/time_position_numeric.json -------------------------------------------------------------------------------- /__tests__/test_data/time_position_numeric.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/__tests__/test_data/time_position_numeric.json.license -------------------------------------------------------------------------------- /__tests__/test_data/vCard.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/__tests__/test_data/vCard.ttl -------------------------------------------------------------------------------- /__tests__/test_data/vCard.ttl.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/__tests__/test_data/vCard.ttl.license -------------------------------------------------------------------------------- /__tests__/test_data/vCard_as_a_node.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/__tests__/test_data/vCard_as_a_node.ttl -------------------------------------------------------------------------------- /__tests__/test_data/vCard_as_a_node.ttl.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/__tests__/test_data/vCard_as_a_node.ttl.license -------------------------------------------------------------------------------- /__tests__/test_dcat_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/__tests__/test_dcat_models.py -------------------------------------------------------------------------------- /__tests__/test_hri_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/__tests__/test_hri_models.py -------------------------------------------------------------------------------- /__tests__/test_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/__tests__/test_policy.py -------------------------------------------------------------------------------- /__tests__/test_prov.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/__tests__/test_prov.py -------------------------------------------------------------------------------- /__tests__/test_rdf_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/__tests__/test_rdf_model.py -------------------------------------------------------------------------------- /__tests__/test_spatial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/__tests__/test_spatial.py -------------------------------------------------------------------------------- /__tests__/test_time_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/__tests__/test_time_models.py -------------------------------------------------------------------------------- /__tests__/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/__tests__/test_utils.py -------------------------------------------------------------------------------- /__tests__/test_vcard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/__tests__/test_vcard.py -------------------------------------------------------------------------------- /docs/Defining_extending_a_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/docs/Defining_extending_a_model.md -------------------------------------------------------------------------------- /docs/Documentation_DCAT.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/docs/Documentation_DCAT.ipynb -------------------------------------------------------------------------------- /docs/Documentation_Health-RI_Core.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/docs/Documentation_Health-RI_Core.ipynb -------------------------------------------------------------------------------- /docs/Intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/docs/Intro.md -------------------------------------------------------------------------------- /docs/Models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/docs/Models.md -------------------------------------------------------------------------------- /docs/Push_to_FDP-Health-RI_v2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/docs/Push_to_FDP-Health-RI_v2.ipynb -------------------------------------------------------------------------------- /docs/Usage_example_FDP.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/docs/Usage_example_FDP.ipynb -------------------------------------------------------------------------------- /docs/Usage_example_FDP_HealthRI_core.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/docs/Usage_example_FDP_HealthRI_core.ipynb -------------------------------------------------------------------------------- /docs/Usage_example_GDI.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/docs/Usage_example_GDI.ipynb -------------------------------------------------------------------------------- /docs/Usage_example_HealthRI_core.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/docs/Usage_example_HealthRI_core.ipynb -------------------------------------------------------------------------------- /docs/Usage_example_time_models.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/docs/Usage_example_time_models.ipynb -------------------------------------------------------------------------------- /docs/Usage_example_with_test_data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/docs/Usage_example_with_test_data.ipynb -------------------------------------------------------------------------------- /docs/example_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/docs/example_data.csv -------------------------------------------------------------------------------- /docs/example_data_fdp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/docs/example_data_fdp.csv -------------------------------------------------------------------------------- /docs/imgs/datasets_fdp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/docs/imgs/datasets_fdp.png -------------------------------------------------------------------------------- /docs/imgs/ds_in_catalog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/docs/imgs/ds_in_catalog.png -------------------------------------------------------------------------------- /docs/imgs/fdp_catalog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/docs/imgs/fdp_catalog.png -------------------------------------------------------------------------------- /docs/imgs/minimal_catalog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/docs/imgs/minimal_catalog.png -------------------------------------------------------------------------------- /docs/imgs/minimal_dataset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/docs/imgs/minimal_dataset.png -------------------------------------------------------------------------------- /docs/imgs/wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/docs/imgs/wizard.png -------------------------------------------------------------------------------- /models/dcat/Attribution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/dcat/Attribution.json -------------------------------------------------------------------------------- /models/dcat/Attribution.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/dcat/Attribution.yaml -------------------------------------------------------------------------------- /models/dcat/DCATCatalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/dcat/DCATCatalog.json -------------------------------------------------------------------------------- /models/dcat/DCATCatalog.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/dcat/DCATCatalog.json.license -------------------------------------------------------------------------------- /models/dcat/DCATCatalog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/dcat/DCATCatalog.yaml -------------------------------------------------------------------------------- /models/dcat/DCATCatalog.yaml.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/dcat/DCATCatalog.yaml.license -------------------------------------------------------------------------------- /models/dcat/DCATDataService.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/dcat/DCATDataService.json -------------------------------------------------------------------------------- /models/dcat/DCATDataService.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/dcat/DCATDataService.json.license -------------------------------------------------------------------------------- /models/dcat/DCATDataService.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/dcat/DCATDataService.yaml -------------------------------------------------------------------------------- /models/dcat/DCATDataService.yaml.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/dcat/DCATDataService.yaml.license -------------------------------------------------------------------------------- /models/dcat/DCATDataset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/dcat/DCATDataset.json -------------------------------------------------------------------------------- /models/dcat/DCATDataset.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/dcat/DCATDataset.json.license -------------------------------------------------------------------------------- /models/dcat/DCATDataset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/dcat/DCATDataset.yaml -------------------------------------------------------------------------------- /models/dcat/DCATDataset.yaml.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/dcat/DCATDataset.yaml.license -------------------------------------------------------------------------------- /models/dcat/DCATDatasetSeries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/dcat/DCATDatasetSeries.json -------------------------------------------------------------------------------- /models/dcat/DCATDatasetSeries.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/dcat/DCATDatasetSeries.json.license -------------------------------------------------------------------------------- /models/dcat/DCATDatasetSeries.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/dcat/DCATDatasetSeries.yaml -------------------------------------------------------------------------------- /models/dcat/DCATDatasetSeries.yaml.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/dcat/DCATDatasetSeries.yaml.license -------------------------------------------------------------------------------- /models/dcat/DCATDistribution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/dcat/DCATDistribution.json -------------------------------------------------------------------------------- /models/dcat/DCATDistribution.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/dcat/DCATDistribution.json.license -------------------------------------------------------------------------------- /models/dcat/DCATDistribution.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/dcat/DCATDistribution.yaml -------------------------------------------------------------------------------- /models/dcat/DCATDistribution.yaml.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/dcat/DCATDistribution.yaml.license -------------------------------------------------------------------------------- /models/dcat/DCATResource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/dcat/DCATResource.json -------------------------------------------------------------------------------- /models/dcat/DCATResource.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/dcat/DCATResource.json.license -------------------------------------------------------------------------------- /models/dcat/DCATResource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/dcat/DCATResource.yaml -------------------------------------------------------------------------------- /models/dcat/DCATResource.yaml.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/dcat/DCATResource.yaml.license -------------------------------------------------------------------------------- /models/dcat/Relationship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/dcat/Relationship.json -------------------------------------------------------------------------------- /models/dcat/Relationship.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/dcat/Relationship.yaml -------------------------------------------------------------------------------- /models/dcat/dcat_catalog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/dcat/dcat_catalog.png -------------------------------------------------------------------------------- /models/dcat/dcat_catalog.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/dcat/dcat_catalog.png.license -------------------------------------------------------------------------------- /models/dcat/dcat_data_service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/dcat/dcat_data_service.png -------------------------------------------------------------------------------- /models/dcat/dcat_data_service.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/dcat/dcat_data_service.png.license -------------------------------------------------------------------------------- /models/dcat/dcat_dataset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/dcat/dcat_dataset.png -------------------------------------------------------------------------------- /models/dcat/dcat_dataset.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/dcat/dcat_dataset.png.license -------------------------------------------------------------------------------- /models/dcat/dcat_dataset_series.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/dcat/dcat_dataset_series.png -------------------------------------------------------------------------------- /models/dcat/dcat_dataset_series.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/dcat/dcat_dataset_series.png.license -------------------------------------------------------------------------------- /models/dcat/dcat_distribution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/dcat/dcat_distribution.png -------------------------------------------------------------------------------- /models/dcat/dcat_distribution.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/dcat/dcat_distribution.png.license -------------------------------------------------------------------------------- /models/dcat/dcat_resource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/dcat/dcat_resource.png -------------------------------------------------------------------------------- /models/dcat/dcat_resource.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/dcat/dcat_resource.png.license -------------------------------------------------------------------------------- /models/foaf/Agent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/foaf/Agent.json -------------------------------------------------------------------------------- /models/foaf/Agent.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/foaf/Agent.json.license -------------------------------------------------------------------------------- /models/foaf/Agent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/foaf/Agent.yaml -------------------------------------------------------------------------------- /models/foaf/Agent.yaml.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/foaf/Agent.yaml.license -------------------------------------------------------------------------------- /models/foaf/Project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/foaf/Project.json -------------------------------------------------------------------------------- /models/foaf/Project.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/foaf/Project.json.license -------------------------------------------------------------------------------- /models/foaf/Project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/foaf/Project.yaml -------------------------------------------------------------------------------- /models/foaf/Project.yaml.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/foaf/Project.yaml.license -------------------------------------------------------------------------------- /models/geo/Geometry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/geo/Geometry.json -------------------------------------------------------------------------------- /models/geo/Geometry.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/geo/Geometry.json.license -------------------------------------------------------------------------------- /models/geo/Geometry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/geo/Geometry.yaml -------------------------------------------------------------------------------- /models/geo/Geometry.yaml.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/geo/Geometry.yaml.license -------------------------------------------------------------------------------- /models/geo/Location.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/geo/Location.json -------------------------------------------------------------------------------- /models/geo/Location.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/geo/Location.json.license -------------------------------------------------------------------------------- /models/geo/Location.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/geo/Location.yaml -------------------------------------------------------------------------------- /models/geo/Location.yaml.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/geo/Location.yaml.license -------------------------------------------------------------------------------- /models/hri_dcat/HRIAgent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/hri_dcat/HRIAgent.json -------------------------------------------------------------------------------- /models/hri_dcat/HRIAgent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/hri_dcat/HRIAgent.yaml -------------------------------------------------------------------------------- /models/hri_dcat/HRICatalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/hri_dcat/HRICatalog.json -------------------------------------------------------------------------------- /models/hri_dcat/HRICatalog.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/hri_dcat/HRICatalog.json.license -------------------------------------------------------------------------------- /models/hri_dcat/HRICatalog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/hri_dcat/HRICatalog.yaml -------------------------------------------------------------------------------- /models/hri_dcat/HRICatalog.yaml.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/hri_dcat/HRICatalog.yaml.license -------------------------------------------------------------------------------- /models/hri_dcat/HRIDataService.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/hri_dcat/HRIDataService.json -------------------------------------------------------------------------------- /models/hri_dcat/HRIDataService.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/hri_dcat/HRIDataService.json.license -------------------------------------------------------------------------------- /models/hri_dcat/HRIDataService.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/hri_dcat/HRIDataService.yaml -------------------------------------------------------------------------------- /models/hri_dcat/HRIDataService.yaml.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/hri_dcat/HRIDataService.yaml.license -------------------------------------------------------------------------------- /models/hri_dcat/HRIDataset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/hri_dcat/HRIDataset.json -------------------------------------------------------------------------------- /models/hri_dcat/HRIDataset.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/hri_dcat/HRIDataset.json.license -------------------------------------------------------------------------------- /models/hri_dcat/HRIDataset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/hri_dcat/HRIDataset.yaml -------------------------------------------------------------------------------- /models/hri_dcat/HRIDataset.yaml.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/hri_dcat/HRIDataset.yaml.license -------------------------------------------------------------------------------- /models/hri_dcat/HRIDatasetSeries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/hri_dcat/HRIDatasetSeries.json -------------------------------------------------------------------------------- /models/hri_dcat/HRIDatasetSeries.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/hri_dcat/HRIDatasetSeries.yaml -------------------------------------------------------------------------------- /models/hri_dcat/HRIDistribution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/hri_dcat/HRIDistribution.json -------------------------------------------------------------------------------- /models/hri_dcat/HRIDistribution.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/hri_dcat/HRIDistribution.json.license -------------------------------------------------------------------------------- /models/hri_dcat/HRIDistribution.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/hri_dcat/HRIDistribution.yaml -------------------------------------------------------------------------------- /models/hri_dcat/HRIDistribution.yaml.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/hri_dcat/HRIDistribution.yaml.license -------------------------------------------------------------------------------- /models/hri_dcat/HRIProject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/hri_dcat/HRIProject.json -------------------------------------------------------------------------------- /models/hri_dcat/HRIProject.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/hri_dcat/HRIProject.yaml -------------------------------------------------------------------------------- /models/hri_dcat/HRIStudy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/hri_dcat/HRIStudy.json -------------------------------------------------------------------------------- /models/hri_dcat/HRIStudy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/hri_dcat/HRIStudy.yaml -------------------------------------------------------------------------------- /models/hri_dcat/HRIVCard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/hri_dcat/HRIVCard.json -------------------------------------------------------------------------------- /models/hri_dcat/HRIVCard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/hri_dcat/HRIVCard.yaml -------------------------------------------------------------------------------- /models/hri_dcat/hri_catalog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/hri_dcat/hri_catalog.png -------------------------------------------------------------------------------- /models/hri_dcat/hri_catalog.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/hri_dcat/hri_catalog.png.license -------------------------------------------------------------------------------- /models/hri_dcat/hri_dataservice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/hri_dcat/hri_dataservice.png -------------------------------------------------------------------------------- /models/hri_dcat/hri_dataservice.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/hri_dcat/hri_dataservice.png.license -------------------------------------------------------------------------------- /models/hri_dcat/hri_dataset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/hri_dcat/hri_dataset.png -------------------------------------------------------------------------------- /models/hri_dcat/hri_dataset.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/hri_dcat/hri_dataset.png.license -------------------------------------------------------------------------------- /models/hri_dcat/hri_distribution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/hri_dcat/hri_distribution.png -------------------------------------------------------------------------------- /models/hri_dcat/hri_distribution.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/hri_dcat/hri_distribution.png.license -------------------------------------------------------------------------------- /models/odrl/ODRLPolicy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/odrl/ODRLPolicy.json -------------------------------------------------------------------------------- /models/odrl/ODRLPolicy.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/odrl/ODRLPolicy.json.license -------------------------------------------------------------------------------- /models/odrl/ODRLPolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/odrl/ODRLPolicy.yaml -------------------------------------------------------------------------------- /models/odrl/ODRLPolicy.yaml.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/odrl/ODRLPolicy.yaml.license -------------------------------------------------------------------------------- /models/prov/Activity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/prov/Activity.json -------------------------------------------------------------------------------- /models/prov/Activity.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/prov/Activity.json.license -------------------------------------------------------------------------------- /models/prov/Activity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/prov/Activity.yaml -------------------------------------------------------------------------------- /models/prov/Activity.yaml.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/prov/Activity.yaml.license -------------------------------------------------------------------------------- /models/prov/Association.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/prov/Association.json -------------------------------------------------------------------------------- /models/prov/Association.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/prov/Association.json.license -------------------------------------------------------------------------------- /models/prov/Association.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/prov/Association.yaml -------------------------------------------------------------------------------- /models/prov/Association.yaml.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/prov/Association.yaml.license -------------------------------------------------------------------------------- /models/prov/End.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/prov/End.json -------------------------------------------------------------------------------- /models/prov/End.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/prov/End.json.license -------------------------------------------------------------------------------- /models/prov/End.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/prov/End.yaml -------------------------------------------------------------------------------- /models/prov/End.yaml.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/prov/End.yaml.license -------------------------------------------------------------------------------- /models/prov/EntityInfluence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/prov/EntityInfluence.json -------------------------------------------------------------------------------- /models/prov/EntityInfluence.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/prov/EntityInfluence.json.license -------------------------------------------------------------------------------- /models/prov/EntityInfluence.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/prov/EntityInfluence.yaml -------------------------------------------------------------------------------- /models/prov/EntityInfluence.yaml.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/prov/EntityInfluence.yaml.license -------------------------------------------------------------------------------- /models/prov/InstantaneousEvent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/prov/InstantaneousEvent.json -------------------------------------------------------------------------------- /models/prov/InstantaneousEvent.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/prov/InstantaneousEvent.json.license -------------------------------------------------------------------------------- /models/prov/InstantaneousEvent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/prov/InstantaneousEvent.yaml -------------------------------------------------------------------------------- /models/prov/InstantaneousEvent.yaml.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/prov/InstantaneousEvent.yaml.license -------------------------------------------------------------------------------- /models/prov/Start.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/prov/Start.json -------------------------------------------------------------------------------- /models/prov/Start.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/prov/Start.json.license -------------------------------------------------------------------------------- /models/prov/Start.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/prov/Start.yaml -------------------------------------------------------------------------------- /models/prov/Start.yaml.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/prov/Start.yaml.license -------------------------------------------------------------------------------- /models/spdx/Checksum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/spdx/Checksum.json -------------------------------------------------------------------------------- /models/spdx/Checksum.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/spdx/Checksum.json.license -------------------------------------------------------------------------------- /models/spdx/Checksum.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/spdx/Checksum.yaml -------------------------------------------------------------------------------- /models/spdx/Checksum.yaml.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/spdx/Checksum.yaml.license -------------------------------------------------------------------------------- /models/time/DateTimeDescription.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/time/DateTimeDescription.json -------------------------------------------------------------------------------- /models/time/DateTimeDescription.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/time/DateTimeDescription.json.license -------------------------------------------------------------------------------- /models/time/DateTimeDescription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/time/DateTimeDescription.yaml -------------------------------------------------------------------------------- /models/time/DateTimeDescription.yaml.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/time/DateTimeDescription.yaml.license -------------------------------------------------------------------------------- /models/time/GeneralDateTimeDescription.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/time/GeneralDateTimeDescription.json -------------------------------------------------------------------------------- /models/time/GeneralDateTimeDescription.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/time/GeneralDateTimeDescription.json.license -------------------------------------------------------------------------------- /models/time/GeneralDateTimeDescription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/time/GeneralDateTimeDescription.yaml -------------------------------------------------------------------------------- /models/time/GeneralDateTimeDescription.yaml.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/time/GeneralDateTimeDescription.yaml.license -------------------------------------------------------------------------------- /models/time/PeriodOfTime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/time/PeriodOfTime.json -------------------------------------------------------------------------------- /models/time/PeriodOfTime.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/time/PeriodOfTime.json.license -------------------------------------------------------------------------------- /models/time/PeriodOfTime.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/time/PeriodOfTime.yaml -------------------------------------------------------------------------------- /models/time/PeriodOfTime.yaml.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/time/PeriodOfTime.yaml.license -------------------------------------------------------------------------------- /models/time/TimeInstant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/time/TimeInstant.json -------------------------------------------------------------------------------- /models/time/TimeInstant.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/time/TimeInstant.json.license -------------------------------------------------------------------------------- /models/time/TimeInstant.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/time/TimeInstant.yaml -------------------------------------------------------------------------------- /models/time/TimeInstant.yaml.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/time/TimeInstant.yaml.license -------------------------------------------------------------------------------- /models/time/TimePosition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/time/TimePosition.json -------------------------------------------------------------------------------- /models/time/TimePosition.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/time/TimePosition.json.license -------------------------------------------------------------------------------- /models/time/TimePosition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/time/TimePosition.yaml -------------------------------------------------------------------------------- /models/time/TimePosition.yaml.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/time/TimePosition.yaml.license -------------------------------------------------------------------------------- /models/time/period_of_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/time/period_of_time.png -------------------------------------------------------------------------------- /models/time/period_of_time.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/time/period_of_time.png.license -------------------------------------------------------------------------------- /models/time/time_instant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/time/time_instant.png -------------------------------------------------------------------------------- /models/time/time_instant.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/time/time_instant.png.license -------------------------------------------------------------------------------- /models/vcard/VCard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/vcard/VCard.json -------------------------------------------------------------------------------- /models/vcard/VCard.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/vcard/VCard.json.license -------------------------------------------------------------------------------- /models/vcard/VCard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/vcard/VCard.yaml -------------------------------------------------------------------------------- /models/vcard/VCard.yaml.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/models/vcard/VCard.yaml.license -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/pyproject.toml -------------------------------------------------------------------------------- /sempyro/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/sempyro/__init__.py -------------------------------------------------------------------------------- /sempyro/adms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/sempyro/adms/__init__.py -------------------------------------------------------------------------------- /sempyro/adms/identifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/sempyro/adms/identifier.py -------------------------------------------------------------------------------- /sempyro/dcat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/sempyro/dcat/__init__.py -------------------------------------------------------------------------------- /sempyro/dcat/data_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/sempyro/dcat/data_service.py -------------------------------------------------------------------------------- /sempyro/dcat/dataset_series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/sempyro/dcat/dataset_series.py -------------------------------------------------------------------------------- /sempyro/dcat/dcat_attribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/sempyro/dcat/dcat_attribution.py -------------------------------------------------------------------------------- /sempyro/dcat/dcat_catalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/sempyro/dcat/dcat_catalog.py -------------------------------------------------------------------------------- /sempyro/dcat/dcat_catalog_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/sempyro/dcat/dcat_catalog_record.py -------------------------------------------------------------------------------- /sempyro/dcat/dcat_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/sempyro/dcat/dcat_dataset.py -------------------------------------------------------------------------------- /sempyro/dcat/dcat_distribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/sempyro/dcat/dcat_distribution.py -------------------------------------------------------------------------------- /sempyro/dcat/dcat_relationship.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/sempyro/dcat/dcat_relationship.py -------------------------------------------------------------------------------- /sempyro/dcat/dcat_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/sempyro/dcat/dcat_resource.py -------------------------------------------------------------------------------- /sempyro/dqv/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/sempyro/dqv/__init__.py -------------------------------------------------------------------------------- /sempyro/dqv/quality_certificate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/sempyro/dqv/quality_certificate.py -------------------------------------------------------------------------------- /sempyro/foaf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/sempyro/foaf/__init__.py -------------------------------------------------------------------------------- /sempyro/foaf/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/sempyro/foaf/agent.py -------------------------------------------------------------------------------- /sempyro/foaf/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/sempyro/foaf/project.py -------------------------------------------------------------------------------- /sempyro/geo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/sempyro/geo/__init__.py -------------------------------------------------------------------------------- /sempyro/geo/spatial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/sempyro/geo/spatial.py -------------------------------------------------------------------------------- /sempyro/hri_dcat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/sempyro/hri_dcat/__init__.py -------------------------------------------------------------------------------- /sempyro/hri_dcat/hri_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/sempyro/hri_dcat/hri_agent.py -------------------------------------------------------------------------------- /sempyro/hri_dcat/hri_catalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/sempyro/hri_dcat/hri_catalog.py -------------------------------------------------------------------------------- /sempyro/hri_dcat/hri_data_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/sempyro/hri_dcat/hri_data_service.py -------------------------------------------------------------------------------- /sempyro/hri_dcat/hri_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/sempyro/hri_dcat/hri_dataset.py -------------------------------------------------------------------------------- /sempyro/hri_dcat/hri_dataset_series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/sempyro/hri_dcat/hri_dataset_series.py -------------------------------------------------------------------------------- /sempyro/hri_dcat/hri_distribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/sempyro/hri_dcat/hri_distribution.py -------------------------------------------------------------------------------- /sempyro/hri_dcat/hri_vcard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/sempyro/hri_dcat/hri_vcard.py -------------------------------------------------------------------------------- /sempyro/hri_dcat/vocabularies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/sempyro/hri_dcat/vocabularies.py -------------------------------------------------------------------------------- /sempyro/namespaces/ADMS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/sempyro/namespaces/ADMS.py -------------------------------------------------------------------------------- /sempyro/namespaces/DCATAPv3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/sempyro/namespaces/DCATAPv3.py -------------------------------------------------------------------------------- /sempyro/namespaces/DCATv3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/sempyro/namespaces/DCATv3.py -------------------------------------------------------------------------------- /sempyro/namespaces/DISCO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/sempyro/namespaces/DISCO.py -------------------------------------------------------------------------------- /sempyro/namespaces/DPV.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/sempyro/namespaces/DPV.py -------------------------------------------------------------------------------- /sempyro/namespaces/DQV.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/sempyro/namespaces/DQV.py -------------------------------------------------------------------------------- /sempyro/namespaces/FREQ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/sempyro/namespaces/FREQ.py -------------------------------------------------------------------------------- /sempyro/namespaces/GEOSPARQL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/sempyro/namespaces/GEOSPARQL.py -------------------------------------------------------------------------------- /sempyro/namespaces/GREG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/sempyro/namespaces/GREG.py -------------------------------------------------------------------------------- /sempyro/namespaces/HEALTHDCATAP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/sempyro/namespaces/HEALTHDCATAP.py -------------------------------------------------------------------------------- /sempyro/namespaces/LOCN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/sempyro/namespaces/LOCN.py -------------------------------------------------------------------------------- /sempyro/namespaces/OA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/sempyro/namespaces/OA.py -------------------------------------------------------------------------------- /sempyro/namespaces/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/sempyro/namespaces/__init__.py -------------------------------------------------------------------------------- /sempyro/odrl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/sempyro/odrl/__init__.py -------------------------------------------------------------------------------- /sempyro/odrl/policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/sempyro/odrl/policy.py -------------------------------------------------------------------------------- /sempyro/prov/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/sempyro/prov/__init__.py -------------------------------------------------------------------------------- /sempyro/prov/prov_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/sempyro/prov/prov_classes.py -------------------------------------------------------------------------------- /sempyro/rdf_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/sempyro/rdf_model.py -------------------------------------------------------------------------------- /sempyro/spdx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/sempyro/spdx/__init__.py -------------------------------------------------------------------------------- /sempyro/spdx/spdx_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/sempyro/spdx/spdx_classes.py -------------------------------------------------------------------------------- /sempyro/time/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/sempyro/time/__init__.py -------------------------------------------------------------------------------- /sempyro/time/dcat_time_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/sempyro/time/dcat_time_models.py -------------------------------------------------------------------------------- /sempyro/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/sempyro/utils/__init__.py -------------------------------------------------------------------------------- /sempyro/utils/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/sempyro/utils/constants.py -------------------------------------------------------------------------------- /sempyro/utils/validator_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/sempyro/utils/validator_functions.py -------------------------------------------------------------------------------- /sempyro/vcard/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/sempyro/vcard/__init__.py -------------------------------------------------------------------------------- /sempyro/vcard/vcard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/sempyro/vcard/vcard.py -------------------------------------------------------------------------------- /serialize_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/serialize_models.py -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-RI/SeMPyRO/HEAD/sonar-project.properties --------------------------------------------------------------------------------